diff options
author | Keuin <[email protected]> | 2021-01-29 18:54:53 +0800 |
---|---|---|
committer | keuin <[email protected]> | 2021-01-29 18:54:53 +0800 |
commit | 602fb9e88685041abac73f868cb697123e15865c (patch) | |
tree | fab97907433b15ab88a55af03c88f6f22ce90676 /src/main/resources | |
parent | b0208136e0dab098d8270b56b65521e13ff3d732 (diff) |
Add Op login hint in the next start after restoring
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fabric.mod.json | 1 | ||||
-rw-r--r-- | src/main/resources/kbackupfabric.mixins.json | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index e2d9d39..5996e4b 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -20,6 +20,7 @@ ] }, "mixins": [ + "kbackupfabric.mixins.json" ], "depends": { "fabricloader": ">=0.7.4", diff --git a/src/main/resources/kbackupfabric.mixins.json b/src/main/resources/kbackupfabric.mixins.json new file mode 100644 index 0000000..b31d0c7 --- /dev/null +++ b/src/main/resources/kbackupfabric.mixins.json @@ -0,0 +1,16 @@ +{ + "required": true, + "package": "com.keuin.kbackupfabric.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "PlayerManagerMixin" + ], + "client": [ + ], + "server": [ + ], + "injectors": { + "defaultRequire": 1 + }, + "verbose": true +}
\ No newline at end of file |