Fix broken output of /itemdb

This commit is contained in:
snowleo 2012-08-03 10:02:47 +02:00
parent 7802192faa
commit ab82f550cf

View File

@ -34,7 +34,7 @@ public class Commanditemdb extends EssentialsCommand
{ {
itemStack = ess.getItemDb().get(args[0]); itemStack = ess.getItemDb().get(args[0]);
} }
sender.sendMessage(itemStack.getType().toString() + "- " + itemStack.getTypeId() + ":" + Integer.toString(itemStack.getData().getData())); sender.sendMessage(itemStack.getType().toString() + "- " + itemStack.getTypeId() + ":" + Integer.toString(itemStack.getDurability()));
if (itemStack.getType() != Material.AIR) if (itemStack.getType() != Material.AIR)
{ {