aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
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/java
parentec6b3c2d8db90a4100ea493d4a2ef7722d7c064c (diff)
feat(player): remove player's custom skin and use a default one
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/world/anhgelus/molehunt/Molehunt.java6
1 files changed, 6 insertions, 0 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");
}
}