Fix missing bitshifts

This commit is contained in:
md_5 2013-12-23 15:43:33 +11:00
parent 16467dc148
commit 45bbe59c15

View file

@ -1,11 +1,11 @@
From 42c0c04deee81b86249ccbfe8061e5c21595ef3f Mon Sep 17 00:00:00 2001 From 60f931b9efb9140650ffb140af1dee18f557f8fe Mon Sep 17 00:00:00 2001
From: Dan Mulloy <dmulloy2@live.com> From: Dan Mulloy <dmulloy2@live.com>
Date: Sun, 22 Dec 2013 18:40:53 -0500 Date: Sun, 22 Dec 2013 18:40:53 -0500
Subject: [PATCH] Fix Biome Decoration Crashes Subject: [PATCH] Fix Biome Decoration Crashes
diff --git a/src/main/java/net/minecraft/server/BiomeDecorator.java b/src/main/java/net/minecraft/server/BiomeDecorator.java diff --git a/src/main/java/net/minecraft/server/BiomeDecorator.java b/src/main/java/net/minecraft/server/BiomeDecorator.java
index b048d6c..8cfafe6 100644 index b048d6c..2a5333a 100644
--- a/src/main/java/net/minecraft/server/BiomeDecorator.java --- a/src/main/java/net/minecraft/server/BiomeDecorator.java
+++ b/src/main/java/net/minecraft/server/BiomeDecorator.java +++ b/src/main/java/net/minecraft/server/BiomeDecorator.java
@@ -1,5 +1,10 @@ @@ -1,5 +1,10 @@
@ -141,7 +141,7 @@ index b048d6c..8cfafe6 100644
+ if ( !this.a.isChunkLoaded( i >> 4, j >> 4 ) ) + if ( !this.a.isChunkLoaded( i >> 4, j >> 4 ) )
+ { + {
+ // If not, load it, then add it to our unload list + // If not, load it, then add it to our unload list
+ this.chunksToUnload.add( this.a.getChunkAt( i, j ) ); + this.chunksToUnload.add( this.a.getChunkAt( i >> 4, j >> 4 ) );
+ } + }
+ +
+ return this.a.getHighestBlockYAt( i, j ); + return this.a.getHighestBlockYAt( i, j );