Proper instance type substring for NPC information window.

This commit is contained in:
MobiusDevelopment 2019-08-02 09:23:04 +00:00
parent 565933653d
commit 2dd63be16d

View File

@ -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("<html><body><center><font color=\"LEVEL\">NPC Information</font></center>");
String className = getClass().getName().substring(43);
String className = getClass().getName().substring(46);
html1.append("<br>");
html1.append("Instance Type: " + className + "<br1>Faction: " + getTemplate().factionId + "<br1>Location ID: " + (_spawn != null ? _spawn.getLocation() : 0) + "<br1>");