Forcibly disable async light updates for the time being

This commit is contained in:
Zach Brown
2016-03-08 16:23:28 -06:00
parent cc04ef507a
commit 4ff94ab64e
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ public boolean useAsyncLighting;
+ private void useAsyncLighting() {
+ useAsyncLighting = getBoolean( "use-async-lighting", false );
+ useAsyncLighting = false; //getBoolean( "use-async-lighting", false );
+ log("World async lighting: " + useAsyncLighting);
+ }
}