coder of the year award goes to me

This commit is contained in:
ZeroEpoch1969 2020-04-22 01:29:27 -07:00
parent 721c2dc18e
commit 321d9f97e0
No known key found for this signature in database
GPG Key ID: A7BAB4E14F089CF3
3 changed files with 2 additions and 4 deletions

View File

@ -94,7 +94,6 @@ public class InteractBlocker extends FreedomService
player.sendMessage(ChatColor.RED + "You can't sleep in hell."); player.sendMessage(ChatColor.RED + "You can't sleep in hell.");
event.setCancelled(true); event.setCancelled(true);
return; return;
} }
switch (event.getMaterial()) switch (event.getMaterial())

View File

@ -23,8 +23,8 @@ import org.bukkit.scheduler.BukkitRunnable;
import org.bukkit.util.Vector; import org.bukkit.util.Vector;
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH, blockHostConsole = true) @CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH, blockHostConsole = true)
@CommandParameters(description = "Bans the specified player.", usage = "/<command> <username> [reason] [-nrb]", aliases = "ban") @CommandParameters(description = "Bans the specified player.", usage = "/<command> <username> [reason] [-nrb]", aliases = "gtfo")
public class Command_gtfo extends FreedomCommand public class Command_ban extends FreedomCommand
{ {
@Override @Override

View File

@ -160,7 +160,6 @@ public class Command_mute extends FreedomCommand
msg(ChatColor.RED + "That player is already muted."); msg(ChatColor.RED + "That player is already muted.");
} }
return true; return true;
} }