diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java index 38fc0951a..28fc9e72d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java @@ -189,7 +189,7 @@ public class Dungeon { challenges = SPDSettings.challenges(); mobsToChampion = -1; - if (SPDSettings.customSeed() != ""){ + if (!SPDSettings.customSeed().isEmpty()){ customSeedText = SPDSettings.customSeed(); seed = DungeonSeed.convertFromText(customSeedText); } else {