mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Fix short circuit logic in ItemDefinitionDecoder
* Replaces an OR, with what should have been an AND while decoding unused item definition info.
This commit is contained in:
@@ -108,7 +108,7 @@ public final class ItemDefinitionDecoder implements Runnable {
|
||||
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();
|
||||
} else if (opcode == 97) {
|
||||
definition.setNoteInfoId(buffer.getShort() & 0xFFFF);
|
||||
|
||||
Reference in New Issue
Block a user