diff options
author | Anthony Hilyard <anthony.hilyard@gmail.com> | 2022-01-25 09:18:04 -0800 |
---|---|---|
committer | Anthony Hilyard <anthony.hilyard@gmail.com> | 2022-01-25 09:18:04 -0800 |
commit | 0cd83156930cf320578e09fafa17069bedd8230f (patch) | |
tree | 63e9d0322326126d4beaa497e06050ba905f555c /src/main/resources/iceberg.mixins.json | |
parent | 7a3df325b5bb294c2836082f58b719c70792ed61 (diff) | |
download | Iceberg-0cd83156930cf320578e09fafa17069bedd8230f.tar.gz Iceberg-0cd83156930cf320578e09fafa17069bedd8230f.tar.bz2 Iceberg-0cd83156930cf320578e09fafa17069bedd8230f.zip |
Rewrote new config system, added support for Config Menus for Forge mod.
Diffstat (limited to 'src/main/resources/iceberg.mixins.json')
-rw-r--r-- | src/main/resources/iceberg.mixins.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/main/resources/iceberg.mixins.json b/src/main/resources/iceberg.mixins.json index f167048..d722775 100644 --- a/src/main/resources/iceberg.mixins.json +++ b/src/main/resources/iceberg.mixins.json @@ -3,15 +3,18 @@ "package": "com.anthonyhilyard.iceberg.mixin", "compatibilityLevel": "JAVA_17", "refmap": "iceberg.refmap.json", + "plugin": "com.anthonyhilyard.iceberg.mixin.ForgeConfigMenusPlugin", "mixins": [ "EntityMixin", - "PlayerAdvancementsMixin", - "ForgeConfigSpecMixin" + "PlayerAdvancementsMixin" ], "client": [ "ScreenMixin", "ClientPacketListenerMixin", - "TextColorMixin" + "TextColorMixin", + "ConfigMenusForgeIEntryDataMixin", + "ConfigMenusForgeConfigScreenMixin", + "ConfigMenusForgeServerConfigUploaderMixin" ], "injectors": { "defaultRequire": 1 |