The Fairy Ring interface now shows all destinations, not just the ones you have visited before.

This commit is contained in:
randy 2025-08-17 09:21:30 -06:00
parent cd8cce30a0
commit 2ecdde1011

View file

@ -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