fix tick manager bigs
This commit is contained in:
parent
45d710f748
commit
0c233f3ce4
2 changed files with 10 additions and 2 deletions
|
@ -10,6 +10,10 @@ import net.tylermurphy.hideAndSeek.ICommand;
|
|||
public class SetSeeker implements ICommand {
|
||||
|
||||
public void execute(CommandSender sender, String[] args) {
|
||||
if(!status.equals("Standby") && !status.equals("Setup")) {
|
||||
sender.sendMessage(errorPrefix + "Game is currently in session");
|
||||
return;
|
||||
}
|
||||
String playerName;
|
||||
if(args.length < 1) {
|
||||
playerName = sender.getName();
|
||||
|
@ -25,7 +29,7 @@ public class SetSeeker implements ICommand {
|
|||
Hider.addEntry(temp.getName());
|
||||
}
|
||||
Seeker.addEntry(player.getName());
|
||||
sender.sendMessage(String.format("%s Set %s as the seaker.", messagePrefix, args[0]));
|
||||
sender.sendMessage(String.format("%s Set %s as the seaker.", messagePrefix, playerName));
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
|
|
|
@ -35,6 +35,10 @@ public class TickManager {
|
|||
|
||||
checkTeams();
|
||||
|
||||
for(Player player : playerList.values()) {
|
||||
player.addPotionEffect(new PotionEffect(PotionEffectType.SATURATION, 1000000, 127, false, false));
|
||||
}
|
||||
|
||||
if(status.equals("Standby") || status.equals("Setup")) {
|
||||
onStandby();
|
||||
} else if(status.equals("Starting")) {
|
||||
|
@ -104,7 +108,7 @@ public class TickManager {
|
|||
|
||||
private static void onStandby() {
|
||||
for(Player player : playerList.values()) {
|
||||
player.addPotionEffect(new PotionEffect(PotionEffectType.REGENERATION, 1000000, 127, false, false));
|
||||
player.addPotionEffect(new PotionEffect(PotionEffectType.HEAL, 1000000, 127, false, false));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue