v2.5.0: fixed non-practice dailies having a purple floor icon

This commit is contained in:
Evan Debenham
2024-08-22 16:20:27 -04:00
parent 9799ed5ae4
commit 92e058261c
@@ -435,7 +435,8 @@ public enum Icons {
} }
private static int runTypeOfsY(){ private static int runTypeOfsY(){
if (Dungeon.dailyReplay || !Dungeon.customSeedText.isEmpty()){ if ((Dungeon.daily && Dungeon.dailyReplay)
|| (!Dungeon.daily && !Dungeon.customSeedText.isEmpty())){
return 8; return 8;
} else { } else {
return 0; return 0;