added dumb shit from gpack
This commit is contained in:
@@ -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!!!!!");
|
||||
}
|
||||
}
|
||||
@@ -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!!!!!");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user