From 7b6cae8fe8dc584f70a01e3494ea1040ecc50e37 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 25 Jul 2021 13:56:03 -0400 Subject: fix(README): Use correct licence redirect --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0255024..3f699fb9 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ lines - + license -- cgit From 16b2b2e71ee289b51548c165e8c6f0475c6cc470 Mon Sep 17 00:00:00 2001 From: nacrt <37629791+nacrt@users.noreply.github.com> Date: Mon, 2 Aug 2021 12:31:43 +0200 Subject: change shader for skyclient cape --- .../java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java b/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java index c1d36e8f..e976fb76 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java @@ -87,9 +87,9 @@ public class NEUCape { shaderName = "fade_cape"; } else if(capeName.equalsIgnoreCase("space")) { shaderName = "space_cape"; - } else if(capeName.equalsIgnoreCase("mcworld") || capeName.equalsIgnoreCase("skyclient")) { + } else if(capeName.equalsIgnoreCase("mcworld")) { shaderName = "mcworld_cape"; - } else if(capeName.equalsIgnoreCase("lava")) { + } else if(capeName.equalsIgnoreCase("lava") || capeName.equalsIgnoreCase("skyclient")) { shaderName = "lava_cape"; } else if(capeName.equalsIgnoreCase("lightning")) { shaderName = "lightning_cape"; -- cgit