diff --git a/Server/src/main/core/api/ContentAPI.kt b/Server/src/main/core/api/ContentAPI.kt index 11786ad1b..55bc7c460 100644 --- a/Server/src/main/core/api/ContentAPI.kt +++ b/Server/src/main/core/api/ContentAPI.kt @@ -2321,7 +2321,9 @@ fun unnote(item: Item): Item { * @return True if Seal of Passage present, false otherwise. */ fun hasSealOfPassage(player: Player): Boolean { - return inEquipmentOrInventory(player, Items.SEAL_OF_PASSAGE_9083) + // Snowscape: modified to include checking the bank as well as equipment or inventory. + return player.hasItem(Item(Items.SEAL_OF_PASSAGE_9083)) + //return inEquipmentOrInventory(player, Items.SEAL_OF_PASSAGE_9083) } /**