forked from SteamWar/SteamWar
Wrap CheckpointUtils for OpenJDK support, remove Border debug messages
This commit is contained in:
@@ -64,7 +64,6 @@ public class Border {
|
||||
|
||||
ghostBarriers.put(player.getUniqueId(), new HashSet<>());
|
||||
lastLocation.put(player.getUniqueId(), player.getLocation());
|
||||
FightSystem.getPlugin().getLogger().log(Level.INFO, () -> player.getName() + " was added to border " + name);
|
||||
}
|
||||
|
||||
public boolean contains(Player player) {
|
||||
@@ -72,7 +71,6 @@ public class Border {
|
||||
}
|
||||
|
||||
public void removePlayer(Player player) {
|
||||
FightSystem.getPlugin().getLogger().log(Level.INFO, () -> player.getName() + " was removed from border " + name);
|
||||
lastLocation.remove(player.getUniqueId());
|
||||
Set<Block> blocks = ghostBarriers.remove(player.getUniqueId());
|
||||
if(blocks == null || !player.isOnline())
|
||||
|
||||
Reference in New Issue
Block a user