Add Bucket + Water/Lava = Rock Interaction

This commit is contained in:
Andre Schweiger 2015-12-27 19:04:33 +01:00
parent 3a7865b913
commit 6f73c1892a
7 changed files with 53 additions and 5 deletions

View file

@ -1206,6 +1206,9 @@ void renderItemIcon2(int itemID, int countLevel, int x, int y, int z) {
case ITEM_GEM:
renderb(x, y, 112, 152, 0, 0xFF);
break;
case TOOL_BUCKET:
renderb(x, y, 200 + countLevel * 8, 144, 0, 0xFF);
break;
}
y -= z;
renderItemIcon(itemID, countLevel, x, y);
@ -1314,6 +1317,9 @@ void renderItemIcon(int itemID, int countLevel, int x, int y) {
case ITEM_GEM:
render(x, y, 112, 152, 0);
break;
case TOOL_BUCKET:
render(x, y, 200 + countLevel * 8, 144, 0);
break;
}
}