diff options
Diffstat (limited to 'hercules')
-rwxr-xr-x | hercules/maptool.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hercules/maptool.py b/hercules/maptool.py index 700d481..af8b55b 100755 --- a/hercules/maptool.py +++ b/hercules/maptool.py @@ -287,7 +287,11 @@ def convertItems(): typeStr = "equip-legs" spriteStr = "equipment/legs/trousers-male.xml" image = "generic/box-fish.png" - if equipLocations == "0": + if itemType == 0 or itemType == 2 or itemType == 18: # usable + image = "usable/bread.png" + typeStr = "usable" + spriteStr = ""; + elif equipLocations == "0": image = "usable/bread.png" typeStr = "usable" spriteStr = ""; |