Minecraft.BiomeGen.F13.GenLayer.initWorldGenSeed C# (CSharp) Method

initWorldGenSeed() public method

public initWorldGenSeed ( long par1 ) : void
par1 long
return void
        public virtual void initWorldGenSeed(long par1)
        {
            this.worldGenSeed = par1;

            if (this.parent != null)
            {
                this.parent.initWorldGenSeed(par1);
            }

            this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
            this.worldGenSeed += this.baseSeed;
            this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
            this.worldGenSeed += this.baseSeed;
            this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
            this.worldGenSeed += this.baseSeed;
        }