Merge pull request #117 from Sethtroll/addnpcid

Add Npc ID to DevToolsOverlay
This commit is contained in:
Adam
2017-07-13 19:17:14 -04:00
committed by GitHub

View File

@@ -155,7 +155,7 @@ public class DevToolsOverlay extends Overlay
{
if (npc != null)
{
String text = npc.getName() + " (A: " + npc.getAnimation() + ") (G: " + npc.getGraphic() + ")";
String text = npc.getName() + " (ID: " + npc.getId() + ") (A: " + npc.getAnimation() + ") (G: " + npc.getGraphic() + ")";
if (npc.getCombatLevel() > 1)
{
OverlayUtil.renderActorOverlay(graphics, npc, text, YELLOW);