SteamWar/BauSystem2.0
Archiviert
12
0

Fix SimulatorTNTPhaseSettingsGui
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2023-12-25 11:38:20 +01:00
Ursprung ca8a916042
Commit cdac4235f5

Datei anzeigen

@ -83,7 +83,7 @@ public class SimulatorTNTPhaseSettingsGui extends SimulatorBaseGui {
SWItem countItem = new SWItem(Material.TNT, "§eCount§8:§7 " + count, clickType -> { SWItem countItem = new SWItem(Material.TNT, "§eCount§8:§7 " + count, clickType -> {
new SimulatorAnvilGui<>(player, "Count", count + "", Integer::parseInt, integer -> { new SimulatorAnvilGui<>(player, "Count", count + "", Integer::parseInt, integer -> {
if (integer < 0) return false; if (integer < 1) return false;
tnt.setCount(integer); tnt.setCount(integer);
SimulatorWatcher.update(simulator); SimulatorWatcher.update(simulator);
return true; return true;