Skip to content

Commit afadf27

Browse files
committed
Items icons
1 parent 6fcf180 commit afadf27

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

other/v5-icons.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,17 @@ def processPets(data, filename, finalJson):
4848
ret["emoteFemale"] = data["emoteFemale"]
4949
return ret
5050

51-
def processSmallEvents(data, filename, finalJson):
51+
def processSimpleEmote(data, filename, finalJson):
5252
return data["emote"]
5353

5454
jsonObj = {}
5555
jsonObj["events"] = processDir("events", processEvents)
5656
jsonObj["pets"] = processDir("pets", processPets)
57-
jsonObj["small_events"] = processDir("smallEvents", processSmallEvents)
57+
jsonObj["small_events"] = processDir("smallEvents", processSimpleEmote)
58+
jsonObj["armors"] = processDir("armors", processSimpleEmote)
59+
jsonObj["weapons"] = processDir("weapons", processSimpleEmote)
60+
jsonObj["potions"] = processDir("potions", processSimpleEmote)
61+
jsonObj["objects"] = processDir("objects", processSimpleEmote)
5862

5963
# Map types
6064
mapTypes = {}

0 commit comments

Comments
 (0)