the_big_one/src/main/java/jesse/keeblarcraft/CustomBlocks/MoneyBlock.java
2024-09-01 19:12:11 -04:00

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);
// }
}
}