mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-23 02:35:22 +01:00
Add missing else before if. Wilderness is now never Your Faction.
This commit is contained in:
parent
de1968c216
commit
fd102bbd39
@ -33,7 +33,7 @@ public class RelationUtil
|
||||
{
|
||||
ret = thatFaction.getName();
|
||||
}
|
||||
if (me instanceof MPlayer && myFaction == thatFaction)
|
||||
else if (me instanceof MPlayer && myFaction == thatFaction)
|
||||
{
|
||||
ret = "your faction";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user