SteamWar/BauSystem
Archiviert
13
0

Add TNTMode to ONLY_TB

Dieser Commit ist enthalten in:
jojo 2021-01-24 21:12:36 +01:00
Ursprung a1ee1cfb01
Commit 4e4a1eb3e8

Datei anzeigen

@ -38,6 +38,12 @@ public class CommandTNT implements CommandExecutor, Listener {
private static TNTMode tntMode = TNTMode.OFF;
static {
if (Region.buildAreaEnabled()) {
tntMode = TNTMode.ONLY_TB;
}
}
public static TNTMode getTntMode() {
return tntMode;
}