diff --git a/src/com/massivecraft/factions/entity/MPlayer.java b/src/com/massivecraft/factions/entity/MPlayer.java index 24c8acea..b037a873 100644 --- a/src/com/massivecraft/factions/entity/MPlayer.java +++ b/src/com/massivecraft/factions/entity/MPlayer.java @@ -102,8 +102,8 @@ public class MPlayer extends SenderEntity implements EconomyParticipato if (MUtil.equals(beforeId, afterId)) return; // Resolve - Faction before = Faction.get(beforeId); - Faction after = Faction.get(afterId); + Faction before = FactionColl.get().get(beforeId, false); + Faction after = FactionColl.get().get(afterId, false); // Apply if (before != null) before.mplayers.remove(this);