Advertisement
marcopolo1613

Untitled

May 23rd, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1.     public void decorate(World par1World, Random par2Random, int par3, int par4)
  2.     {
  3.         if (this.currentWorld != null)
  4.         {
  5.             //throw new RuntimeException("Already decorating!!"); //<---- this thing
  6.         }
  7.         else
  8.         {
  9.             this.currentWorld = par1World;
  10.             this.randomGenerator = par2Random;
  11.             this.chunk_X = par3;
  12.             this.chunk_Z = par4;
  13.             this.decorate();
  14.             this.currentWorld = null;
  15.             this.randomGenerator = null;
  16.         }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement