Skip to content

Commit

Permalink
Classes icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Feiryn committed Jul 22, 2024
1 parent afadf27 commit c2cd4ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions other/v5-icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def processPets(data, filename, finalJson):
def processSimpleEmote(data, filename, finalJson):
return data["emote"]

def processSimpleEmoji(data, filename, finalJson):
return data["emoji"]

jsonObj = {}
jsonObj["events"] = processDir("events", processEvents)
jsonObj["pets"] = processDir("pets", processPets)
Expand All @@ -59,6 +62,7 @@ def processSimpleEmote(data, filename, finalJson):
jsonObj["weapons"] = processDir("weapons", processSimpleEmote)
jsonObj["potions"] = processDir("potions", processSimpleEmote)
jsonObj["objects"] = processDir("objects", processSimpleEmote)
jsonObj["classes"] = processDir("classes", processSimpleEmoji)

# Map types
mapTypes = {}
Expand Down

0 comments on commit c2cd4ae

Please sign in to comment.