From 0c936086d74adc98c017747684a072022e502e88 Mon Sep 17 00:00:00 2001 From: anhgelus Date: Wed, 21 Aug 2024 19:35:37 +0000 Subject: feat(player): remove player's custom skin and use a default one --- src/main/java/world/anhgelus/molehunt/Molehunt.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java') 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"); } } -- cgit v1.2.3