Fixed syntax error in sheep ArrayList

This commit is contained in:
RangerMauve 2013-06-30 15:06:57 -04:00
parent eda4007b1e
commit e749635131

View File

@ -11,7 +11,7 @@ import org.bukkit.plugin.Plugin;
public final class DiscoSheep extends JavaPlugin {
private ArrayList<Sheep> sheepArray = new ArrayList<>();
private ArrayList<Sheep> sheepArray = new ArrayList<Sheep>();
private DiscoUpdater updater = new DiscoUpdater(this);
// radius for random sheep spawns around player
private static int sheepSpawnRadius = 5;