added dumb shit from gpack

This commit is contained in:
Ryan
2024-11-25 14:58:50 +02:00
parent 99b40f7f23
commit 0f30de0285
23 changed files with 127 additions and 2 deletions

View File

@@ -17,6 +17,6 @@ public class Celestium implements ModInitializer {
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
LOGGER.info("Hello Fabric world!");
LOGGER.info("beer!!!!!");
}
}

View File

@@ -5,11 +5,14 @@ import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import com.smithy.Celestium;
@Mixin(MinecraftServer.class)
public class CelestiumMixin {
@Inject(at = @At("HEAD"), method = "loadWorld")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadWorld()V
Celestium.LOGGER.info("beef!!!!!");
}
}