This commit is contained in:
ZHAY10086
2026-07-02 16:56:56 +08:00
parent 6e8de90c52
commit 41c76e04e1
1287 changed files with 20910 additions and 6637 deletions
+14
View File
@@ -0,0 +1,14 @@
#modloaded astralsorcery
#loader mixin
import mixin.CallbackInfoReturnable;
import native.net.minecraft.item.ItemStack;
#mixin {targets: "appeng.core.features.registries.P2PTunnelRegistry"}
zenClass MixinP2PTunnelRegistry {
#mixin Inject {method: "getTunnelTypeByItem", at: {value: "HEAD"}}
function ignoreStack(trigger as ItemStack, cir as mixin.CallbackInfoReturnable) as void {
cir.setReturnValue(null);
}
}