This commit is contained in:
sainagh
2026-07-25 16:18:14 -05:00
parent 3533ad27ec
commit 5463fe8373
3932 changed files with 5500 additions and 211408 deletions
-25
View File
@@ -1,25 +0,0 @@
#modloaded aether_legacy
#loader mixin
import native.net.minecraftforge.fml.common.gameevent.TickEvent;
import mixin.CallbackInfo;
/*
Disable event handler checking item entities every tick.
Created by ChaosStrikez for Aether v1.5.4.0.
*/
#mixin Mixin
#{targets: "com.gildedgames.the_aether.AetherEventHandler"}
zenClass MixinAetherEventHandler {
#mixin Inject
#{
# method: "onWorldTick",
# at: {value: "HEAD"},
# cancellable: true
#}
function mbc_disableWorldTick(event as TickEvent.WorldTickEvent, ci as CallbackInfo) as void {
ci.cancel();
}
}