diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -15,7 +15,7 @@ <img src="https://img.shields.io/tokei/lines/github/Moulberry/NotEnoughUpdates?label=lines&color=informational&logo=GitHub" alt="lines"> </a> <!-- license --> - <a href="https://github.com/Moulberry/NotEnoughUpdates-REPO/blob/master/LICENSE" target="_blank"> + <a href="https://github.com/Moulberry/NotEnoughUpdates/blob/master/LICENSE" target="_blank"> <img src="https://img.shields.io/badge/license-CC%20BY--NC%203.0-informational" alt="license"> </a> <!-- contributors --> 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 77dee6e5..6011f0ac 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/cosmetics/NEUCape.java @@ -90,6 +90,7 @@ public class NEUCape { this.capeName = "fade"; this.shaderName = "fade_cape"; } + } if(defaultBehaviour){ this.capeName = capeName; @@ -100,9 +101,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"; |