Implement Linkage for TowerRun

This commit is contained in:
2025-10-23 17:20:07 +02:00
parent d75c82dca5
commit 9dabcfc918
11 changed files with 50 additions and 24 deletions
@@ -21,18 +21,19 @@ package de.steamwar.towerrun.commands;
import de.steamwar.command.SWCommand;
import de.steamwar.command.TypeValidator;
import de.steamwar.linkage.Linked;
import de.steamwar.sql.SteamwarUser;
import de.steamwar.sql.UserPerm;
import de.steamwar.towerrun.TowerRun;
import de.steamwar.towerrun.countdowns.LobbyCountdown;
import org.bukkit.entity.Player;
@Linked
public class StartCommand extends SWCommand {
private final LobbyCountdown countdown;
private LobbyCountdown countdown;
public StartCommand(LobbyCountdown countdown) {
public StartCommand() {
super("start", "skip");
this.countdown = countdown;
}
@Register