Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.minecraft.src;
- public class mod_Fireworks extends BaseMod{
- @Override
- public String Version() {
- return "1.3_01";
- }
- public mod_Fireworks() {
- ModLoader.RegisterBlock(example);
- }
- public void AddRecipes(CraftingManager recipes) {
- recipes.addRecipe(new ItemStack(example), new Object[] {
- "#",
- '#', Block.planks
- });
- }
- public static final Block example;
- static
- {
- example = (new _FireworksBlock(95)).setHardness(1.5F).setStepSound(Block.soundStoneFootstep);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment