diff options
| author | anhgelus <anhgelus.morhtuuzh@proton.me> | 2024-08-21 19:35:37 +0000 |
|---|---|---|
| committer | anhgelus <anhgelus.morhtuuzh@proton.me> | 2024-08-21 19:35:37 +0000 |
| commit | 0c936086d74adc98c017747684a072022e502e88 (patch) | |
| tree | 2f53501d5739688db15e6da17be7aa3f994d2ce7 /src/main | |
| parent | ec6b3c2d8db90a4100ea493d4a2ef7722d7c064c (diff) | |
feat(player): remove player's custom skin and use a default one
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/java/world/anhgelus/molehunt/Molehunt.java | 6 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 3 | ||||
| -rw-r--r-- | src/main/resources/molehunt.mixins.json | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/src/main/java/world/anhgelus/molehunt/Molehunt.java b/src/main/java/world/anhgelus/molehunt/Molehunt.java index 5886734..a1333a4 100644 --- a/src/main/java/world/anhgelus/molehunt/Molehunt.java +++ b/src/main/java/world/anhgelus/molehunt/Molehunt.java @@ -1,10 +1,16 @@ package world.anhgelus.molehunt; import net.fabricmc.api.ModInitializer; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class Molehunt implements ModInitializer { + public static final String MOD_ID = "molehunt"; + public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID); + @Override public void onInitialize() { + LOGGER.info("Initializing Molehunt"); } } 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 } |
