23 lines
803 B
Java
23 lines
803 B
Java
package jesse.keeblarcraft.CustomBlocks;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
//Testing to make a money block the idea is to be able to put the money in your bank at somepoint
|
|
public class MoneyBlock extends Block {
|
|
|
|
// CommonServerUtils commonServerUtils = new CommonServerUtils();
|
|
|
|
// public static final BlockItem MONEY_BLOCK_ITEM = new BlockItem(BlockManager.MONEY_BLOCK, new FabricItemSettings());
|
|
|
|
public MoneyBlock(Settings sett) {
|
|
super(sett);
|
|
|
|
// ItemManager.RegisterItem("money_block", MONEY_BLOCK_ITEM);
|
|
|
|
// @Override
|
|
// public ActionResult onUse(World world, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
|
// return this.getBlock().onUse(this.asBlockState(), world, hit.getBlockPos(), player, hand, hit);
|
|
// }
|
|
}
|
|
}
|