Added minecart item (not placeable)

This commit is contained in:
Shoghi Cervantes 2013-12-13 00:33:07 +01:00
parent 4d0eb5e529
commit 90e598bb2c
3 changed files with 4 additions and 3 deletions

View File

@ -65,7 +65,6 @@ class BlockAPI{
array(QUARTZ_STAIRS, 0),
array(SLAB, 0),
array(SLAB, 1),
//array(SLAB, 2),
array(WOODEN_SLAB, 0),
array(WOODEN_SLAB, 1),
array(WOODEN_SLAB, 2),
@ -184,7 +183,7 @@ class BlockAPI{
array(FLINT_AND_STEEL, 0),
array(CLOCK, 0),
array(COMPASS, 0),
//array(MINECART, 0),
array(MINECART, 0),
array(SPAWN_EGG, MOB_CHICKEN),
array(SPAWN_EGG, MOB_COW),
array(SPAWN_EGG, MOB_PIG),
@ -198,7 +197,7 @@ class BlockAPI{
array(PUMPKIN_SEEDS, 0),
array(CARROT, 0),
array(POTATO, 0),
//array(BEETROOT_SEEDS, 0),
array(BEETROOT_SEEDS, 0),
array(EGG, 0),
array(DYE, 0),
array(DYE, 7),

View File

@ -98,6 +98,7 @@ define("SIGN", 323);
define("WOODEN_DOOR", 324);
define("BUCKET", 325);
define("MINECART", 329);
define("IRON_DOOR", 330);
define("REDSTONE", 331);

View File

@ -173,6 +173,7 @@ class CraftingRecipes{
"DIAMOND:?x9=>DIAMOND_BLOCK:0x1",
"GOLD_INGOT:?x9=>GOLD_BLOCK:0x1",
"IRON_INGOT:?x9=>IRON_BLOCK:0x1",
"IRON_INGOT:?x5=>MINECART:0x1",
"WHEAT:?x9=>HAY_BALE:0x1",
"PAPER:?x3=>BOOK:0x1",
"WOODEN_PLANKS:?x6,BOOK:?x3=>BOOKSHELF:0x1",