diff --git a/common/buildcraft/builders/ItemConstructionMarker.java b/common/buildcraft/builders/ItemConstructionMarker.java index 292288f3..3dd77302 100755 --- a/common/buildcraft/builders/ItemConstructionMarker.java +++ b/common/buildcraft/builders/ItemConstructionMarker.java @@ -84,10 +84,12 @@ public class ItemConstructionMarker extends ItemBlock { NBTTagCompound nbt = NBTUtils.getItemData(marker); if (nbt.hasKey("x")) { - return iconRecording; + itemIcon = iconRecording; } else { - return iconBase; + itemIcon = iconBase; } + + return itemIcon; } @Override