Skip to content

Commit

Permalink
修改mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
Gu-ZT committed Jun 27, 2024
1 parent 5dd4e81 commit 320853b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.example.examplemod.mixin;
2 changes: 1 addition & 1 deletion common/src/main/resources/examplemod-common.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "dev.dubhe.anvilcraft.mixin",
"package": "com.example.examplemod.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.example.examplemod.mixin.fabric;
2 changes: 1 addition & 1 deletion fabric/src/main/resources/examplemod.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "dev.dubhe.anvilcraft.fabric.mixin",
"package": "com.example.examplemod.mixin.fabric",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.example.examplemod.mixin.forge;
2 changes: 1 addition & 1 deletion forge/src/main/resources/examplemod.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "dev.dubhe.anvilcraft.forge.mixin",
"package": "com.example.examplemod.mixin.forge",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
Expand Down

0 comments on commit 320853b

Please sign in to comment.