*I accidentally deleted this method
This commit is contained in:
parent
314baf869f
commit
82b0722d05
@ -448,6 +448,12 @@ public class ForgeQueue_All extends NMSMappedFaweQueue<World, Chunk, ExtendedBlo
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setPalette(ExtendedBlockStorage section, BlockStateContainer palette) throws NoSuchFieldException, IllegalAccessException {
|
||||||
|
Field fieldSection = ExtendedBlockStorage.class.getDeclaredField("data");
|
||||||
|
fieldSection.setAccessible(true);
|
||||||
|
fieldSection.set(section, palette);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean hasSky() {
|
public boolean hasSky() {
|
||||||
return !nmsWorld.provider.getHasNoSky();
|
return !nmsWorld.provider.getHasNoSky();
|
||||||
|
Loading…
Reference in New Issue
Block a user