Skip to content

Commit

Permalink
Fix #1538: Unlock Default Items not working
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Jul 5, 2021
1 parent 8f51cb2 commit 20b067e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/gameMan.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def export(
# deletable and copyable
# Also add DESIRES_UP, so they place in the correct orientation
if item.id in _UNLOCK_ITEMS:
all_items[i] = copy.copy(item)
all_items[i] = item = copy.copy(item)
item.deletable = item.copiable = True
item.facing = editoritems.DesiredFacing.UP

Expand Down

0 comments on commit 20b067e

Please sign in to comment.