Can now talk to people on Lunar Isle even if your seal of passage is in the bank

This commit is contained in:
randy 2025-03-08 15:00:08 -07:00
parent 18d30a3e1e
commit 9c8c2ada70

View file

@ -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)
}
/**