Skip to content

Commit

Permalink
Fix bug in MC_slot_update2 parsem
Browse files Browse the repository at this point in the history
Somewhere along the way I forgot to add the item IDs
for Bow and Flint & Steel. As a result, parsing of
message 0x0f was failing for e.g. drawing back the
bow.
  • Loading branch information
mmcgill committed Apr 14, 2012
1 parent db4311e commit b882350
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mc3p/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ def emit_slot_update(update):
MC_slot_update = Parsem(parse_slot_update, emit_slot_update)

SLOT_UPDATE_2_ITEM_IDS = set([
0x103, #Flint and steel
0x105, #Bow
0x15A, #Fishing rod
0x167, #Shears

Expand Down

0 comments on commit b882350

Please sign in to comment.