From 2ecdde1011bea3c7babe4e1509cd32747c6e184b Mon Sep 17 00:00:00 2001 From: randy Date: Sun, 17 Aug 2025 09:21:30 -0600 Subject: [PATCH] The Fairy Ring interface now shows all destinations, not just the ones you have visited before. --- .../main/content/global/handlers/iface/FairyRingInterface.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Server/src/main/content/global/handlers/iface/FairyRingInterface.kt b/Server/src/main/content/global/handlers/iface/FairyRingInterface.kt index 69bba13d7..69ad63e21 100644 --- a/Server/src/main/content/global/handlers/iface/FairyRingInterface.kt +++ b/Server/src/main/content/global/handlers/iface/FairyRingInterface.kt @@ -77,9 +77,11 @@ class FairyRingInterface : InterfaceListener { private fun drawLog (player: Player) { for (i in FairyRing.values().indices) { + /* Snowscape: show all fairy ring destinations, whether they have been there or not. if (!player.savedData.globalData.hasTravelLog(i)) { continue } + */ val ring = FairyRing.values()[i] if (ring.childId == -1) { continue