aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorAnthony Hilyard <anthony.hilyard@gmail.com>2021-10-25 13:17:00 -0700
committerAnthony Hilyard <anthony.hilyard@gmail.com>2021-10-25 13:17:00 -0700
commit730ec4f0faaf99e231279fdc026566f9970afb23 (patch)
treee84bd462ed7c482e958924d242853f5904f8e51f /src/main/resources
parentec4c5aebf3b5b5af872c6b168c02bedd2bd5a9e3 (diff)
downloadIceberg-730ec4f0faaf99e231279fdc026566f9970afb23.tar.gz
Iceberg-730ec4f0faaf99e231279fdc026566f9970afb23.tar.bz2
Iceberg-730ec4f0faaf99e231279fdc026566f9970afb23.zip
Fixed crash issue in creative inventory. Fixed tooltip rendering issue.
Enabled mixins.
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/fabric.mod.json3
-rw-r--r--src/main/resources/iceberg.mixins.json3
2 files changed, 4 insertions, 2 deletions
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)"
}