Add missing else before if. Wilderness is now never Your Faction.

This commit is contained in:
Olof Larsson 2014-10-14 10:08:54 +02:00
parent de1968c216
commit fd102bbd39

View File

@ -33,7 +33,7 @@ public class RelationUtil
{ {
ret = thatFaction.getName(); ret = thatFaction.getName();
} }
if (me instanceof MPlayer && myFaction == thatFaction) else if (me instanceof MPlayer && myFaction == thatFaction)
{ {
ret = "your faction"; ret = "your faction";
} }