Fix for ops using /packet for spamming

Need appinfo,properties, Eclipse doesnt generate it
Fixed SerialVersion UID
Made SuperAdmin Stand out in /list
This commit is contained in:
Jerom van der Sar 2012-11-21 19:27:54 +01:00
parent 477c8ffdd0
commit ea151d63e4
4 changed files with 9 additions and 7 deletions

1
.gitignore vendored
View File

@ -2,7 +2,6 @@
/nbproject/private/
/dist/
/build/
appinfo.properties
buildnumber.properties
# eclipse excludes (JeromSar)

View File

@ -35,11 +35,11 @@ public class Command_list extends TFM_Command
{
if(TFM_SuperadminList.isSeniorAdmin(p))
{
prefix = (ChatColor.GOLD + "[SenAdmin]");
prefix = (ChatColor.LIGHT_PURPLE + "[SenAdmin]");
}
else
{
prefix = (ChatColor.RED + "[SupAdmin]");
prefix = (ChatColor.GOLD + "[SupAdmin]");
}
}
else

View File

@ -478,7 +478,11 @@ public class TFM_PlayerListener implements Listener
{
block_command = true;
}
else if (TFM_SuperadminList.isUserSuperadmin(p) && Pattern.compile("^/socialspy").matcher(command).find())
else if (!TFM_SuperadminList.isUserSuperadmin(p) && Pattern.compile("^/socialspy").matcher(command).find())
{
block_command = true;
}
else if (!TFM_SuperadminList.isUserSuperadmin(p) && Pattern.compile("^/packet").matcher(command).find())
{
block_command = true;
}

View File

@ -15,10 +15,9 @@ import org.bukkit.World;
public class TFM_ProtectedArea implements Serializable
{
// Serializable Classes need one of these apperantly
private static final long serialVersionUID = 1L;
public static final double MAX_RADIUS = 50.0D;
private static final long serialVersionUID = -3270338811000937254L;
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;