Fixed the limbo sky color

Changes to be committed:
	modified:   src/main/java/org/dimdev/dimdoors/client/LimboSkyProvider.java
This commit is contained in:
SD 2020-09-26 13:08:17 +05:30
parent 5d9abe6690
commit 0b0c4d5d16
No known key found for this signature in database
GPG key ID: E36B57EE08544BC5

View file

@ -9,6 +9,6 @@ public class LimboSkyProvider extends CustomSkyProvider {
private static final Identifier SUN_RENDER_PATH = new Identifier("dimdoors:textures/other/limbo_sun.png");
public LimboSkyProvider() {
super(MOON_RENDER_PATH, SUN_RENDER_PATH, new Vec3i(255, 255, 255));
super(MOON_RENDER_PATH, SUN_RENDER_PATH, new Vec3i(25, 25, 25));
}
}