aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authoranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-21 19:35:37 +0000
committeranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-21 19:35:37 +0000
commit0c936086d74adc98c017747684a072022e502e88 (patch)
tree2f53501d5739688db15e6da17be7aa3f994d2ce7 /src/main/resources
parentec6b3c2d8db90a4100ea493d4a2ef7722d7c064c (diff)
feat(player): remove player's custom skin and use a default one
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/fabric.mod.json3
-rw-r--r--src/main/resources/molehunt.mixins.json4
2 files changed, 6 insertions, 1 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index e48aaf8..81d7829 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -15,6 +15,9 @@
"client": [
"world.anhgelus.molehunt.client.MolehuntClient"
],
+ "server": [
+
+ ],
"main": [
"world.anhgelus.molehunt.Molehunt"
]
diff --git a/src/main/resources/molehunt.mixins.json b/src/main/resources/molehunt.mixins.json
index 8acee9a..a691723 100644
--- a/src/main/resources/molehunt.mixins.json
+++ b/src/main/resources/molehunt.mixins.json
@@ -3,7 +3,9 @@
"minVersion": "0.8",
"package": "world.anhgelus.molehunt.mixin",
"compatibilityLevel": "JAVA_21",
- "mixins": [],
+ "mixins": [
+ "NoPlayerList"
+ ],
"injectors": {
"defaultRequire": 1
}