Fix indent style
This commit is contained in:
parent
9ecb4f532a
commit
3ade89cf1f
@ -435,7 +435,6 @@ public class MConf extends Entity<MConf>
|
|||||||
MConf.get().factionIdNone
|
MConf.get().factionIdNone
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// -------------------------------------------- //
|
// -------------------------------------------- //
|
||||||
// INTEGRATION: ECONOMY
|
// INTEGRATION: ECONOMY
|
||||||
// -------------------------------------------- //
|
// -------------------------------------------- //
|
||||||
|
@ -81,7 +81,8 @@ public class EngineLwc implements Listener
|
|||||||
Boolean notAllowedHere = false;
|
Boolean notAllowedHere = false;
|
||||||
|
|
||||||
// Are they allowed to have LWC protections in this faction land
|
// Are they allowed to have LWC protections in this faction land
|
||||||
if(MConf.get().lwcDisallowIn.contains(factionHere.getId())) {
|
if (MConf.get().lwcDisallowIn.contains(factionHere.getId()))
|
||||||
|
{
|
||||||
notAllowedHere = true;
|
notAllowedHere = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,17 +92,23 @@ public class EngineLwc implements Listener
|
|||||||
factionHere.getId().equals(MConf.get().factionIdSafezone) ||
|
factionHere.getId().equals(MConf.get().factionIdSafezone) ||
|
||||||
factionHere.getId().equals(MConf.get().factionIdWarzone);
|
factionHere.getId().equals(MConf.get().factionIdWarzone);
|
||||||
|
|
||||||
if(!ignore) {
|
if ( ! ignore)
|
||||||
if(!MConf.get().lwcAllowIn.containsKey(relation)) {
|
{
|
||||||
|
if (!MConf.get().lwcAllowIn.containsKey(relation))
|
||||||
|
{
|
||||||
notAllowedHere = true;
|
notAllowedHere = true;
|
||||||
} else {
|
}
|
||||||
if(!MConf.get().lwcAllowIn.get(relation)) {
|
else
|
||||||
|
{
|
||||||
|
if(!MConf.get().lwcAllowIn.get(relation))
|
||||||
|
{
|
||||||
notAllowedHere = true;
|
notAllowedHere = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(notAllowedHere) {
|
if (notAllowedHere)
|
||||||
|
{
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
mplayer.msg(Txt.parse("<red>You cannot create this LWC protection in this faction."));
|
mplayer.msg(Txt.parse("<red>You cannot create this LWC protection in this faction."));
|
||||||
}
|
}
|
||||||
@ -124,15 +131,19 @@ public class EngineLwc implements Listener
|
|||||||
Boolean passRelationTest = true;
|
Boolean passRelationTest = true;
|
||||||
|
|
||||||
// If the relationship isn't in the MConf, consider it failed
|
// If the relationship isn't in the MConf, consider it failed
|
||||||
if(!MConf.get().lwcAllowIn.containsKey(rel)) {
|
if ( ! MConf.get().lwcAllowIn.containsKey(rel))
|
||||||
|
{
|
||||||
passRelationTest = false;
|
passRelationTest = false;
|
||||||
} else {
|
}
|
||||||
if(!MConf.get().lwcAllowIn.get(rel)) {
|
else
|
||||||
|
{
|
||||||
|
if ( ! MConf.get().lwcAllowIn.get(rel))
|
||||||
|
{
|
||||||
passRelationTest = false;
|
passRelationTest = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!passRelationTest) continue;
|
if ( ! passRelationTest) continue;
|
||||||
|
|
||||||
protection.remove();
|
protection.remove();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user