mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:11:35 +01:00
Fix WrappedWorld.getLightingProvider being null and crashing
This commit is contained in:
parent
90b9a3aff9
commit
69f4c9f8ad
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class WrappedWorld extends World {
|
|||
|
||||
@Override
|
||||
public WorldLightManager getLightingProvider() {
|
||||
return super.getLightingProvider();
|
||||
return world.getLightingProvider();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue