From 132e3b476f4d4005f204059084ddeb10001ee582 Mon Sep 17 00:00:00 2001 From: noil Date: Mon, 19 Apr 2021 23:26:20 -0400 Subject: [PATCH] Add missing comments to AmbianceModule --- .../seppuku/impl/module/world/AmbianceModule.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/world/AmbianceModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/world/AmbianceModule.java index b032ebb..8e88488 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/world/AmbianceModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/world/AmbianceModule.java @@ -15,6 +15,9 @@ import team.stiff.pomelo.impl.annotated.handler.annotation.Listener; import java.awt.*; +/** + * @author noil + */ public class AmbianceModule extends Module { public enum SkyMode { @@ -45,6 +48,9 @@ public class AmbianceModule extends Module { } } + /** + * Similar GL code to the minecraft function #renderSkyEnd() + */ private void renderSky() { GlStateManager.disableFog(); GlStateManager.disableAlpha();