Guest User

Untitled

a guest
Oct 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package net.minecraft.src;
  2. import java.util.Random;
  3.  
  4. public class mod_dirtyfire extends BaseMod
  5. {
  6.  
  7.     public mod_dirtyfire()
  8.     {
  9.         ModLoader.AddRecipe(new ItemStack(Block.fire, 10), new Object []{
  10.             " ##", " ##", Character.valueOf('#'), Block.Dirt
  11.         });
  12.     }
  13.  
  14.     public String Version()
  15.     {
  16.         return "3.14159265";
  17.     }
  18. }
Add Comment
Please, Sign In to add comment