diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcInstance.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcInstance.java index b17b8fe485..30867840d2 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcInstance.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/NpcInstance.java @@ -846,7 +846,7 @@ public class NpcInstance extends Creature // Send a Server->Client NpcHtmlMessage() containing the GM console about this NpcInstance NpcHtmlMessage html = new NpcHtmlMessage(0); StringBuilder html1 = new StringBuilder("
NPC Information
"); - String className = getClass().getName().substring(46); + String className = getClass().getSimpleName(); html1.append("
"); html1.append("Instance Type: " + className + "Faction: " + getTemplate().factionId + "Location ID: " + (_spawn != null ? _spawn.getLocation() : 0) + "");