Skip to content

Commit

Permalink
fix: now recognize equips that only applied to MOD dolls
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroRin committed Oct 27, 2023
1 parent e67d9f4 commit 87e4218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commander_new/commander.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def prepare_choices(
for erec in itertools.chain(
*[equip_type_groups[t] for t in equippable_types]
):
if not erec.fit_guns or gid in erec.fit_guns:
if not erec.fit_guns or gun.gun_id in erec.fit_guns:
if erec.lv00_cnt > 0 and erec.lv10_cnt < max_dolls:
equippable_equips.append(erec.lv00_obj)
if erec.upgrade > 0:
Expand Down

0 comments on commit 87e4218

Please sign in to comment.