Minimal Stuff

This commit is contained in:
Jerom van der Sar 2012-11-21 15:57:39 +01:00
parent 892682e969
commit fbc8d20fda
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,6 @@
package me.StevenLawson.TotalFreedomMod.Commands;
import me.StevenLawson.TotalFreedomMod.TFM_SuperadminList;
import me.StevenLawson.TotalFreedomMod.TFM_Util;
import me.StevenLawson.TotalFreedomMod.TotalFreedomMod;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;

View file

@ -15,7 +15,11 @@ import org.bukkit.World;
public class TFM_ProtectedArea implements Serializable
{
public static final double MAX_RADIUS = 50.0D;
// Serializable Classes need one of these apperantly
private static final long serialVersionUID = 1L;
public static final double MAX_RADIUS = 50.0D;
private static Map<String, TFM_ProtectedArea> protectedAreas = new HashMap<String, TFM_ProtectedArea>();
private final SerializableLocation center_location;
private final double radius;