fixed icon setting

This commit is contained in:
SpaceToad 2014-09-14 09:40:46 +02:00
parent b268433b4c
commit 411ec984f0

View file

@ -84,10 +84,12 @@ public class ItemConstructionMarker extends ItemBlock {
NBTTagCompound nbt = NBTUtils.getItemData(marker); NBTTagCompound nbt = NBTUtils.getItemData(marker);
if (nbt.hasKey("x")) { if (nbt.hasKey("x")) {
return iconRecording; itemIcon = iconRecording;
} else { } else {
return iconBase; itemIcon = iconBase;
} }
return itemIcon;
} }
@Override @Override