forked from SteamWar/SteamWar
Fix many things
This commit is contained in:
+2
-2
@@ -39,7 +39,7 @@ public class LoadtimerCommand extends SWCommand {
|
||||
@Register(value = "start", description = {"LOADTIMER_HELP_START_2", "LOADTIMER_HELP_START_3"})
|
||||
public void start(@Validator Player p, TimerMode mode) {
|
||||
Region r = Region.getRegion(p.getLocation());
|
||||
if (r.isGlobal()) return;
|
||||
if (r.getType().isGlobal()) return;
|
||||
if (!Loadtimer.hasTimer(r))
|
||||
Loadtimer.createLoadtimer(r, mode == TimerMode.HALF);
|
||||
}
|
||||
@@ -47,7 +47,7 @@ public class LoadtimerCommand extends SWCommand {
|
||||
@Register(value = "stop", description = "LOADTIMER_HELP_STOP")
|
||||
public void stop(@Validator Player p) {
|
||||
Region r = Region.getRegion(p.getLocation());
|
||||
if (r.isGlobal()) return;
|
||||
if (r.getType().isGlobal()) return;
|
||||
if (Loadtimer.hasTimer(r))
|
||||
Loadtimer.getTimer(r).delete();
|
||||
}
|
||||
|
||||
+2
-2
@@ -46,7 +46,7 @@ public class LoadtimerGuiItem extends BauGuiItem {
|
||||
@Override
|
||||
public ItemStack getItem(Player player) {
|
||||
Region r = Region.getRegion(player.getLocation());
|
||||
if (r.isGlobal())
|
||||
if (r.getType().isGlobal())
|
||||
return new SWItem(Material.BOWL, BauSystem.MESSAGE.parse("LOADTIMER_GUI_GLOBAL", player)).getItemStack();
|
||||
if (Loadtimer.hasTimer(r)) {
|
||||
return new SWItem(Material.BOW, BauSystem.MESSAGE.parse("LOADTIMER_GUI_STOP", player)).getItemStack();
|
||||
@@ -58,7 +58,7 @@ public class LoadtimerGuiItem extends BauGuiItem {
|
||||
@Override
|
||||
public boolean click(ClickType click, Player p) {
|
||||
Region r = Region.getRegion(p.getLocation());
|
||||
if (r.isGlobal()) return false;
|
||||
if (r.getType().isGlobal()) return false;
|
||||
if (Loadtimer.hasTimer(r)) {
|
||||
p.performCommand("lt stop");
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user