From b111faed7feca0e2384fcafb095a70e35434241d Mon Sep 17 00:00:00 2001 From: SHsuperCM Date: Thu, 9 Sep 2021 18:12:31 +0300 Subject: v0.5.1, "Broken Path" mixins wont be injected if config is turned off MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Changing config for broken paths now requires a restart to apply and it being disabled completely removes the effects it has on the game. • Organized mixins into packages fixes #14 --- src/main/resources/citresewn.mixins.json | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/citresewn.mixins.json b/src/main/resources/citresewn.mixins.json index 5753a8a..ccf70eb 100644 --- a/src/main/resources/citresewn.mixins.json +++ b/src/main/resources/citresewn.mixins.json @@ -3,18 +3,21 @@ "minVersion": "0.8", "package": "shcm.shsupercm.fabric.citresewn.mixin", "compatibilityLevel": "JAVA_16", + "plugin": "shcm.shsupercm.fabric.citresewn.config.CITResewnMixinConfiguration", "mixins": [ - "AbstractFileResourcePackMixin", - "ArmorFeatureRendererMixin", - "ElytraFeatureRendererMixin", - "IdentifierMixin", - "ItemRendererMixin", - "JsonUnbakedModelAccessor", - "ModelLoaderMixin", - "NbtCompoundAccessor", - "ReloadableResourceManagerImplMixin", - "ResourcePackCompatibilityMixin", - "SpriteAtlasTextureMixin" + "core.ModelLoaderMixin", + "core.SpriteAtlasTextureMixin", + "core.JsonUnbakedModelAccessor", + "core.NbtCompoundAccessor", + + "cititem.ItemRendererMixin", + "citarmor.ArmorFeatureRendererMixin", + "citelytra.ElytraFeatureRendererMixin", + + "broken_paths.AbstractFileResourcePackMixin", + "broken_paths.ReloadableResourceManagerImplMixin", + "broken_paths.IdentifierMixin", + "broken_paths.ResourcePackCompatibilityMixin" ], "injectors": { "defaultRequire": 1 -- cgit