diff --git a/src/engine/devcmd/cmds/InfoCmd.java b/src/engine/devcmd/cmds/InfoCmd.java index cc86f90d..55baa024 100644 --- a/src/engine/devcmd/cmds/InfoCmd.java +++ b/src/engine/devcmd/cmds/InfoCmd.java @@ -506,7 +506,7 @@ public class InfoCmd extends AbstractDevCmd { case MobLoot: Item item = (Item) target; ItemTemplate template = ItemTemplate.templates.get(item.getTemplateID()); - output += StringUtils.addWS("ItemBase: " + template.template_id, 20); + output += StringUtils.addWS("Template: " + template.template_id, 20); output += "Weight: " + template.item_wt; output += newline; DecimalFormat df = new DecimalFormat("###,###,###,###,##0");