Added fence gates to default "territoryProtectedMaterials" list.

Existing users should run these commands to add it to an existing config, if desired:
/f config territoryProtectedMaterials FENCE_GATE
/f config territoryProtectedMaterialsWhenOffline FENCE_GATE

Also changed first letter of "canLeaveWithNegativePower" setting to lowercase, to fit with Java standards. If you had previously changed this setting to false, you'll need to do so again.
This commit is contained in:
Brettflan
2011-10-15 12:46:09 -05:00
parent 04074bc2b4
commit 3981ca4dde
4 changed files with 6 additions and 4 deletions

View File

@ -47,7 +47,7 @@ public class CmdJoin extends FCommand
return;
}
if (!Conf.CanLeaveWithNegativePower && fme.getPower() < 0)
if (!Conf.canLeaveWithNegativePower && fme.getPower() < 0)
{
msg("<b>You cannot join a faction until your power is positive.");
return;

View File

@ -57,7 +57,7 @@ public class CmdKick extends FCommand
return;
}
if ( ! Conf.CanLeaveWithNegativePower && you.getPower() < 0)
if ( ! Conf.canLeaveWithNegativePower && you.getPower() < 0)
{
msg("<b>You cannot kick that member until their power is positive.");
return;