Remove some old debug

This commit is contained in:
Sam 2018-07-18 23:56:09 +01:00 committed by Alexander Meech
parent e20ff69281
commit 8335471d34
1 changed files with 0 additions and 5 deletions

View File

@ -4,7 +4,6 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor; import org.bukkit.ChatColor;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.block.Block; import org.bukkit.block.Block;
@ -51,8 +50,6 @@ public class NamedTeamsModule extends Module
if (_teamPerSpawn) if (_teamPerSpawn)
{ {
Bukkit.broadcastMessage("Creating teams by spawns " + spawns.size());
for (Location location : spawns) for (Location location : spawns)
{ {
List<Location> newSpawns = new ArrayList<>(); List<Location> newSpawns = new ArrayList<>();
@ -77,8 +74,6 @@ public class NamedTeamsModule extends Module
int playersPerTeam = getGame().getTeamModule().getPlayersPerTeam(); int playersPerTeam = getGame().getTeamModule().getPlayersPerTeam();
int teams = getGame().getArcadeManager().GetPlayerFull() / playersPerTeam; int teams = getGame().getArcadeManager().GetPlayerFull() / playersPerTeam;
Bukkit.broadcastMessage("Creating teams by target " + teams);
for (int i = 0; i < teams; i++) for (int i = 0; i < teams; i++)
{ {
createTeam(spawns); createTeam(spawns);