Skip to content

Commit

Permalink
remove dual classification for teleport traps
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Nov 29, 2024
1 parent ddbbf97 commit d2762ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/zork_grand_inquisitor/data/item_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ class ZorkGrandInquisitorItemData(NamedTuple):
ZorkGrandInquisitorItems.TRAP_INFINITE_CORRIDOR: ZorkGrandInquisitorItemData(
statemap_keys=None,
archipelago_id=ITEM_OFFSET + 900 + 0,
classification=ItemClassification.trap | ItemClassification.useful,
classification=ItemClassification.trap,
tags=(ZorkGrandInquisitorTags.TRAP,),
),
ZorkGrandInquisitorItems.TRAP_REVERSE_CONTROLS: ZorkGrandInquisitorItemData(
Expand All @@ -1413,7 +1413,7 @@ class ZorkGrandInquisitorItemData(NamedTuple):
ZorkGrandInquisitorItems.TRAP_TELEPORT: ZorkGrandInquisitorItemData(
statemap_keys=None,
archipelago_id=ITEM_OFFSET + 900 + 2,
classification=ItemClassification.trap | ItemClassification.useful,
classification=ItemClassification.trap,
tags=(ZorkGrandInquisitorTags.TRAP,),
),
ZorkGrandInquisitorItems.TRAP_ZVISION: ZorkGrandInquisitorItemData(
Expand Down

0 comments on commit d2762ef

Please sign in to comment.