diff options
author | SHsuperCM <shsupercm@gmail.com> | 2021-09-09 18:12:31 +0300 |
---|---|---|
committer | SHsuperCM <shsupercm@gmail.com> | 2021-09-09 18:12:31 +0300 |
commit | b111faed7feca0e2384fcafb095a70e35434241d (patch) | |
tree | 04615755be91dc2f823342c17ca412c3f1141045 /src/main/resources | |
parent | ab5f5e5beb99f592af538b5525e8e826ebda6dd1 (diff) | |
download | CITResewn-b111faed7feca0e2384fcafb095a70e35434241d.tar.gz CITResewn-b111faed7feca0e2384fcafb095a70e35434241d.tar.bz2 CITResewn-b111faed7feca0e2384fcafb095a70e35434241d.zip |
v0.5.1, "Broken Path" mixins wont be injected if config is turned off
• 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
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/citresewn.mixins.json | 25 |
1 files changed, 14 insertions, 11 deletions
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 |