From 92e058261ca117270facbb8b357c0885cd52f7df Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 22 Aug 2024 16:20:27 -0400 Subject: [PATCH] v2.5.0: fixed non-practice dailies having a purple floor icon --- .../com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java index ccef29e8a..9bab37fa6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java @@ -435,7 +435,8 @@ public enum Icons { } private static int runTypeOfsY(){ - if (Dungeon.dailyReplay || !Dungeon.customSeedText.isEmpty()){ + if ((Dungeon.daily && Dungeon.dailyReplay) + || (!Dungeon.daily && !Dungeon.customSeedText.isEmpty())){ return 8; } else { return 0;