Skip to content

Commit

Permalink
Fix dungeons with no finish logic in DungeonManager.java (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
scooterboo authored Aug 11, 2023
1 parent bbf0d4d commit d0dde1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void triggerEvent(DungeonPassConditionType conditionType, int... params)
}

public boolean isFinishedSuccessfully() {
if (passConfigData.getLogicType() == null) return false;
if (passConfigData.getConds() == null) return false;
return LogicType.calculate(passConfigData.getLogicType(), finishedConditions);
}

Expand Down

0 comments on commit d0dde1c

Please sign in to comment.