Format code [skip actions]

This commit is contained in:
github-actions 2023-09-16 00:52:37 +00:00
parent 5458d36102
commit c9a43a5e98

View File

@ -286,7 +286,10 @@ public final class DungeonManager {
// jump players to next dungeon if available
if (this.dungeonData.getPassJumpDungeon() != 0) {
for (var player : this.getScene().getPlayers()) {
player.getServer().getDungeonSystem().enterDungeon(player, 0, this.dungeonData.getPassJumpDungeon(), false);
player
.getServer()
.getDungeonSystem()
.enterDungeon(player, 0, this.dungeonData.getPassJumpDungeon(), false);
}
}
}