Format code

This commit is contained in:
2026-05-17 10:08:06 +02:00
parent d110df924e
commit 5125453406
152 changed files with 752 additions and 814 deletions
@@ -60,8 +60,7 @@ public class HologramCommand extends SWCommand {
if (PortalCommand.noPermissions(player)) return;
Hologram hologram = Hologram.getHologram(id);
if (hologram == null)
return;
if (hologram == null) return;
hologram.delete();
LobbySystem.config().save();
@@ -82,8 +82,7 @@ public class ModifyCommand extends SWCommand implements Listener {
@Register("waitinghallspawn")
public void setWaitingHallSpawn(Player player) {
SteamwarUser user = SteamwarUser.get(player.getUniqueId());
if (!user.hasPerm(UserPerm.ADMINISTRATION))
return;
if (!user.hasPerm(UserPerm.ADMINISTRATION)) return;
LobbySystem.config().setWaitingHallSpawn(player.getLocation());
}