5 janv. 2014, 17:42

Je tiens à dire que nous ne sommes pas obliger de créer une nouvelle classe item block:
Mettez:

public static BlockHalfSlab singleSlab, doubleSlab;

A la place de:

public static Block singleSlab, doubleSlab;

Et rajouter dans la partie Post Init:

Item.itemsList[singleSlab.blockID] = new ItemSlab(singleSlab.blockID-256,
(BlockHalfSlab)singleSlab, (BlockHalfSlab)doubleSlab, false);

Et à la place de:

GameRegistry.registerBlock(singleSlab, ItemBlockSlab.class "doubleSlab");
GameRegistry.registerBlock(doubleSlab, ItemBlockSlab.class "doubleSlab");

Mettez tout simplement:

GameRegistry.registerBlock(singleSlab, "singleSlab");
GameRegistry.registerBlock(doubleSlab, "doubleSlab");