From 730ec4f0faaf99e231279fdc026566f9970afb23 Mon Sep 17 00:00:00 2001 From: Anthony Hilyard Date: Mon, 25 Oct 2021 13:17:00 -0700 Subject: Fixed crash issue in creative inventory. Fixed tooltip rendering issue. Enabled mixins. --- src/main/resources/fabric.mod.json | 3 +++ src/main/resources/iceberg.mixins.json | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 0920998..e365eea 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -19,6 +19,9 @@ "entrypoints": { }, "accessWidener": "iceberg.accesswidener", + "mixins": [ + "iceberg.mixins.json" + ], "depends": { "fabricloader": ">=0.11.3", diff --git a/src/main/resources/iceberg.mixins.json b/src/main/resources/iceberg.mixins.json index 82d2362..25c3dd8 100644 --- a/src/main/resources/iceberg.mixins.json +++ b/src/main/resources/iceberg.mixins.json @@ -2,7 +2,6 @@ "required": true, "package": "com.anthonyhilyard.iceberg.mixin", "compatibilityLevel": "JAVA_8", - "refmap": "iceberg.refmap.json", "mixins": [ "EntityMixin", "PlayerAdvancementsMixin" @@ -16,6 +15,6 @@ "injectors": { "defaultRequire": 1 }, - "minVersion": "0.8.4", + "minVersion": "0.8.2", "target": "@env(DEFAULT)" } -- cgit