Skip to content

Commit a2b2564

Browse files
committed
remove natural capes
Signed-off-by: J10a1n15 <[email protected]>
1 parent 7001909 commit a2b2564

File tree

6 files changed

+7
-265
lines changed

6 files changed

+7
-265
lines changed

src/main/java/club/sk1er/patcher/config/PatcherConfig.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -338,13 +338,6 @@ public class PatcherConfig extends Config {
338338
)
339339
public static boolean betterHideGui;
340340

341-
@Switch(
342-
title = "Natural Capes",
343-
description = "Changes some physics in capes to fix rotation bugs and look more natural.",
344-
category = "Miscellaneous", subcategory = "Rendering"
345-
)
346-
public static boolean naturalCapes;
347-
348341
@Switch(
349342
title = "Smooth Scrolling",
350343
description = "Smoothly scrolls through vanilla Minecraft GUIs.",
@@ -1735,6 +1728,12 @@ private void modifyEverySound() {
17351728
min = 0, max = 100
17361729
)
17371730
public static int pumpkinOverlayOpacity = 100;
1731+
@Switch(
1732+
title = "Natural Capes",
1733+
description = "Changes some physics in capes to fix rotation bugs and look more natural.",
1734+
category = "Deprecated", subcategory = "Rendering"
1735+
)
1736+
public static boolean naturalCapes;
17381737

17391738

17401739
public static boolean labyModMoment = true;
@@ -1917,6 +1916,7 @@ public PatcherConfig() {
19171916
deprecateFunc.apply("disableNightVision", "BetterNightVision");
19181917
deprecateFunc.apply("cleanerNightVision", "BetterNightVision");
19191918
deprecateFunc.apply("pumpkinOverlayOpacity", "OverlayTweaks");
1919+
deprecateFunc.apply("naturalCapes", "LegacyTweaks");
19201920
//</editor-fold>
19211921

19221922
try {

src/main/java/club/sk1er/patcher/mixins/features/EntityMixin_NaturalCapes.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/main/java/club/sk1er/patcher/mixins/features/EntityPlayerMixin_NaturalCapes.java

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/main/java/club/sk1er/patcher/mixins/features/LayerCapeMixin_NaturalCapes.java

Lines changed: 0 additions & 157 deletions
This file was deleted.

src/main/java/club/sk1er/patcher/mixins/features/optifine/LayerCapeMixin_NaturalCapes_OptifineCompat.java

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/main/resources/mixins.patcher.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@
132132
"features.BlockRendererDispatcherMixin_RemoveFoliage",
133133
"features.ChunkRenderDispatcherMixin_LimitUpdates",
134134
"features.EntityFXMixin_TrackCullState",
135-
"features.EntityMixin_NaturalCapes",
136-
"features.EntityPlayerMixin_NaturalCapes",
137135
"features.EntityPlayerSPMixin_NauseaEffect",
138136
"features.EntityRendererMixin_CameraPerspective",
139137
"features.EntityRendererMixin_ParallaxFix",
@@ -148,7 +146,6 @@
148146
"features.ImageBufferDownload_EarsMod",
149147
"features.ImageBufferDownloadMixin_ImprovedHeadRendering",
150148
"features.LayerArrowMixin_CancelRender",
151-
"features.LayerCapeMixin_NaturalCapes",
152149
"features.LayerWitherAuraMixin_DisableWhenInvisible",
153150
"features.MinecraftMixin_BetterKeybindHandling",
154151
"features.MinecraftMixin_CustomDebugKeys",
@@ -179,7 +176,6 @@
179176
"features.optifine.EntityRendererMixin_ZoomTweaks",
180177
"features.optifine.GuiOverlayDebugMixin_SimplifyFpsCounter",
181178
"features.optifine.GuiOverlayDebugMixin_VanillaMetricsRenderer",
182-
"features.optifine.LayerCapeMixin_NaturalCapes_OptifineCompat",
183179
"features.smoothscrolling.GuiSlotMixin",
184180
"performance.AnvilChunkLoaderMixin_UnclosedStream",
185181
"performance.BlockPosMixin_ReduceAllocations",

0 commit comments

Comments
 (0)