diff --git a/lib/ProjectKorraSpirits.jar b/lib/ProjectKorraSpirits.jar index b7e021eb..03b9fc87 100644 Binary files a/lib/ProjectKorraSpirits.jar and b/lib/ProjectKorraSpirits.jar differ diff --git a/src/com/projectkorra/projectkorra/command/WhoCommand.java b/src/com/projectkorra/projectkorra/command/WhoCommand.java index 3576661f..c3e3eaaf 100644 --- a/src/com/projectkorra/projectkorra/command/WhoCommand.java +++ b/src/com/projectkorra/projectkorra/command/WhoCommand.java @@ -288,9 +288,12 @@ public class WhoCommand extends PKCommand { if (GeneralMethods.hasSpirits()) { SpiritPlayer sPlayer = SpiritPlayer.getSpiritPlayer(player_); if (subelement.equals(SpiritElement.DARK) && sPlayer.isLightSpirit()) { - continue; + sender.sendMessage(subelement.getColor() + " Is " + sPlayer.getSpirit().getName() + element.getName()); } if (subelement.equals(SpiritElement.LIGHT) && sPlayer.isDarkSpirit()) { + sender.sendMessage(subelement.getColor() + " Is " + sPlayer.getSpirit().getName() + element.getName()); + } + if (sPlayer.isSpirit()) { continue; } }