mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-07 16:49:12 +00:00
Merge pull request #108 from garyttierney/bugfix/item-definition-decoder
Fix short circuit logic in ItemDefinitionDecoder
This commit is contained in:
@@ -108,7 +108,7 @@ public final class ItemDefinitionDecoder implements Runnable {
|
|||||||
buffer.getShort();
|
buffer.getShort();
|
||||||
buffer.getShort();
|
buffer.getShort();
|
||||||
}
|
}
|
||||||
} else if (opcode == 78 || opcode == 79 || opcode >= 90 || opcode <= 93 || opcode == 95) {
|
} else if (opcode == 78 || opcode == 79 || (opcode >= 90 && opcode <= 93) || opcode == 95) {
|
||||||
buffer.getShort();
|
buffer.getShort();
|
||||||
} else if (opcode == 97) {
|
} else if (opcode == 97) {
|
||||||
definition.setNoteInfoId(buffer.getShort() & 0xFFFF);
|
definition.setNoteInfoId(buffer.getShort() & 0xFFFF);
|
||||||
|
|||||||
Reference in New Issue
Block a user