From 4aa7d7be6d862726fb725074db9a3f9ac1bd0863 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 16 Jun 2018 18:07:31 -0400 Subject: [PATCH] Core/Commands: Print phase info even if its a summoned npc --- Source/Game/Chat/Commands/NPCCommands.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Game/Chat/Commands/NPCCommands.cs b/Source/Game/Chat/Commands/NPCCommands.cs index eb8d536e4..b7f5ce6ee 100644 --- a/Source/Game/Chat/Commands/NPCCommands.cs +++ b/Source/Game/Chat/Commands/NPCCommands.cs @@ -85,10 +85,9 @@ namespace Game.Chat CreatureData data = Global.ObjectMgr.GetCreatureData(target.GetSpawnId()); if (data != null) - { handler.SendSysMessage(CypherStrings.NpcinfoPhases, data.phaseId, data.phaseGroup); - PhasingHandler.PrintToChat(handler, target.GetPhaseShift()); - } + + PhasingHandler.PrintToChat(handler, target.GetPhaseShift()); handler.SendSysMessage(CypherStrings.NpcinfoArmor, target.GetArmor()); handler.SendSysMessage(CypherStrings.NpcinfoPosition, target.GetPositionX(), target.GetPositionY(), target.GetPositionZ());