diff --git a/src/com/massivecraft/factions/integration/SpoutFeatures.java b/src/com/massivecraft/factions/integration/SpoutFeatures.java index cc0954bf..595ecc01 100644 --- a/src/com/massivecraft/factions/integration/SpoutFeatures.java +++ b/src/com/massivecraft/factions/integration/SpoutFeatures.java @@ -220,6 +220,10 @@ public class SpoutFeatures if (viewedFaction == null) return; + // these still end up returning null on occasion at this point, mucking up the SpoutManager.getPlayer() method + if (viewer.getPlayer() == null || viewed.getPlayer() == null) + return; + SpoutPlayer pViewer = SpoutManager.getPlayer(viewer.getPlayer()); SpoutPlayer pViewed = SpoutManager.getPlayer(viewed.getPlayer()); if (pViewed == null || pViewer == null)