Some indent style and comment management.

This commit is contained in:
Olof Larsson 2013-04-19 15:01:53 +02:00
parent afe944d3c4
commit c2063a47b2
6 changed files with 12 additions and 13 deletions

View File

@ -272,11 +272,13 @@ public class ConfServer extends SimpleConfig
public static boolean econEnabled = false;
public static String econUniverseAccount = "";
public static double econCostClaimWilderness = 30.0;
public static double econCostClaimFromFactionBonus = 30.0;
public static double econClaimAdditionalMultiplier = 0.5;
public static double econClaimRefundMultiplier = 0.7;
public static double econClaimUnconnectedFee = 0.0;
public static double econCostCreate = 100.0;
public static double econCostSethome = 30.0;
public static double econCostJoin = 0.0;

View File

@ -42,7 +42,8 @@ public class CmdFactionsDemote extends FCommand
if (you.getRole() == Rel.MEMBER)
{
if (!fme.getRole().isAtLeast(Rel.OFFICER)) {
if (!fme.getRole().isAtLeast(Rel.OFFICER))
{
msg("<b>You must be an officer to demote a member to recruit.");
return;
}
@ -51,7 +52,8 @@ public class CmdFactionsDemote extends FCommand
}
else if (you.getRole() == Rel.OFFICER)
{
if (!fme.getRole().isAtLeast(Rel.LEADER)) {
if (!fme.getRole().isAtLeast(Rel.LEADER))
{
msg("<b>You must be the leader to demote an officer to member.");
return;
}

View File

@ -42,7 +42,8 @@ public class CmdFactionsPromote extends FCommand
if (you.getRole() == Rel.RECRUIT)
{
if (!fme.getRole().isAtLeast(Rel.OFFICER)) {
if (!fme.getRole().isAtLeast(Rel.OFFICER))
{
msg("<b>You must be an officer to promote someone to member.");
return;
}
@ -51,7 +52,8 @@ public class CmdFactionsPromote extends FCommand
}
else if (you.getRole() == Rel.MEMBER)
{
if (!fme.getRole().isAtLeast(Rel.LEADER)) {
if (!fme.getRole().isAtLeast(Rel.LEADER))
{
msg("<b>You must be the leader to promote someone to officer.");
return;
}

View File

@ -36,11 +36,4 @@ public class FactionsEventDisband extends FactionsEventAbstractSender
this.factionId = faction.getId();
}
// -------------------------------------------- //
// ASSORTED
// -------------------------------------------- //
}

View File

@ -49,7 +49,7 @@ public class FactionsEventMembershipChange extends FactionsEventAbstractSender
}
// -------------------------------------------- //
// INTERNAL ENUM
// REASON ENUM
// -------------------------------------------- //
public enum MembershipChangeReason