Fixed Fabric screen initialization

Removes mixin log entries from framework
Fixes fossil grinder not having a weighted output with fossils
Also adds item save logic to the tank block
Fixes seat registration
This commit is contained in:
2026-05-20 20:05:50 -04:00
parent 95d5ae89e6
commit 50c958ff52
11 changed files with 39 additions and 24 deletions
@@ -21,7 +21,6 @@ public class JRMod implements ModInitializer
// project.
// Use Fabric to bootstrap the Common mod.
Constants.LOG.info("Hello Fabric world!");
CommonClass.init();
FluidStorage.SIDED.registerForBlockEntities((be, side) ->
@@ -14,8 +14,5 @@ public class MixinTitleScreen
@Inject(at = @At("HEAD"), method = "init()V")
private void init(CallbackInfo info) {
Constants.LOG.info("This line is printed by an example mod mixin from Fabric!");
Constants.LOG.info("MC Version: {}", Minecraft.getInstance().getVersionType());
}
}