v1.3.0: fixed an error with seed assignment

This commit is contained in:
Evan Debenham
2022-05-22 18:19:21 -04:00
parent a9a6c13d95
commit 09228f631d

View File

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