We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d0a3e commit ca76628Copy full SHA for ca76628
worlds/sc2/ItemGroups.py
@@ -51,7 +51,7 @@
51
item_name_groups.setdefault(data.type, []).append(item)
52
# Numbered flaggroups get sorted into an unnumbered group
53
# Currently supports numbers of one or two digits
54
- if data.type[-2:].strip().isnumeric:
+ if data.type[-2:].strip().isnumeric():
55
type_group = data.type[:-2].strip()
56
item_name_groups.setdefault(type_group, []).append(item)
57
# Flaggroups with numbers are unlisted
0 commit comments