Fix dungeons with no finish logic in DungeonManager.java (#2288)

This commit is contained in:
Nazrin 2023-08-10 17:06:55 -07:00 committed by GitHub
parent bbf0d4dda1
commit d0dde1c9e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ public final class DungeonManager {
}
public boolean isFinishedSuccessfully() {
if (passConfigData.getLogicType() == null) return false;
if (passConfigData.getConds() == null) return false;
return LogicType.calculate(passConfigData.getLogicType(), finishedConditions);
}