mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-26 04:25:21 +01:00
Removed a spammy print out >.<
This commit is contained in:
parent
337586d01e
commit
476b13ce1f
BIN
MobArena.jar
BIN
MobArena.jar
Binary file not shown.
@ -170,8 +170,8 @@ public class Arena
|
||||
}
|
||||
|
||||
// Start the spawnThread.
|
||||
spawnThread = new MASpawnThread(plugin, this);
|
||||
spawnTaskId = Bukkit.getServer().getScheduler().scheduleSyncRepeatingTask(plugin, spawnThread, waveDelay, waveInterval);
|
||||
spawnThread = new MASpawnThread(plugin, this);
|
||||
spawnTaskId = Bukkit.getServer().getScheduler().scheduleSyncRepeatingTask(plugin, spawnThread, waveDelay, (!waveClear) ? waveInterval : 60);
|
||||
|
||||
readyPlayers.clear();
|
||||
MAUtils.tellAll(this, MAMessages.get(Msg.ARENA_START));
|
||||
@ -1219,14 +1219,8 @@ public class Arena
|
||||
// Make sure to remove any dead/removed entities first.
|
||||
List<Entity> tmp = new LinkedList<Entity>(monsters);
|
||||
for (Entity e : tmp)
|
||||
{
|
||||
out(e.getClass().getSimpleName());
|
||||
if (e.isDead())
|
||||
{
|
||||
out("Removing monster");
|
||||
monsters.remove(e);
|
||||
}
|
||||
}
|
||||
|
||||
// Compare the current size with the previous size.
|
||||
if (monsters.size() < spawnThread.previousSize || spawnThread.previousSize == 0)
|
||||
@ -1267,9 +1261,4 @@ public class Arena
|
||||
{
|
||||
return ((enabled && setup) ? ChatColor.GREEN : ChatColor.GRAY) + configName();
|
||||
}
|
||||
|
||||
private void out(String s)
|
||||
{
|
||||
System.out.println(s);
|
||||
}
|
||||
}
|
||||
|
@ -336,7 +336,7 @@ public class MAUtils
|
||||
|
||||
try
|
||||
{
|
||||
if (backupFile.exists())
|
||||
if (backupFile.exists() && !restoreInventory(p))
|
||||
return false;
|
||||
|
||||
backupFile.createNewFile();
|
||||
|
Loading…
Reference in New Issue
Block a user