Add shader option to disable biome shading, disable biome shading on non-normal worlds
This commit is contained in:
parent
62b42aa302
commit
78f571a68b
7 changed files with 40 additions and 10 deletions
|
|
@ -541,4 +541,7 @@ public class LegacyMapChunkCache implements MapChunkCache {
|
|||
return false;
|
||||
return true;
|
||||
}
|
||||
public World getWorld() {
|
||||
return w;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,4 +96,8 @@ public interface MapChunkCache {
|
|||
* Set autogenerate - must be done after at least one visible range has been set
|
||||
*/
|
||||
public void setAutoGenerateVisbileRanges(DynmapWorld.AutoGenerateOption do_generate);
|
||||
/**
|
||||
* Get world
|
||||
*/
|
||||
public World getWorld();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -629,4 +629,9 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||
this.blockdata = blockdata;
|
||||
return true;
|
||||
}
|
||||
@Override
|
||||
public World getWorld() {
|
||||
return w;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue