Skip to content

Commit ca76628

Browse files
sc2: Fixing typo in itemgroups.py causing spurious item groups with 2 letters chopped off (#3612)
1 parent d4d0a3e commit ca76628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/sc2/ItemGroups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
item_name_groups.setdefault(data.type, []).append(item)
5252
# Numbered flaggroups get sorted into an unnumbered group
5353
# Currently supports numbers of one or two digits
54-
if data.type[-2:].strip().isnumeric:
54+
if data.type[-2:].strip().isnumeric():
5555
type_group = data.type[:-2].strip()
5656
item_name_groups.setdefault(type_group, []).append(item)
5757
# Flaggroups with numbers are unlisted

0 commit comments

Comments
 (0)