加载模组时出错:方法 public static void

问题描述 投票:0回答:0
@SubscribeEvent(priority = EventPriority.NORMAL, receiveCanceled = true)
public static void onKeyInput(TickEvent.ClientTickEvent event) {
    if (event.phase != TickEvent.Phase.END || Minecraft.getInstance().player == null) {
        return;
    }

这使我的 Minecraft Forge 1.16.5 版本 36.2.39 的 .jar mod 不断崩溃。如果需要,我可以提供整个代码。 最新崩溃:https://pastebin.com/GPNfrfHK

“方法 public static void tlro.tlro.KeyEventHandler.onKeyInput(net.minecraftforge.event.TickEvent$ClientTickEvent) 有 @SubscribeEvent 注释,但采用的参数不是基本类型接口 net.minecraftforge.fml.event 的子类型.lifecycle.IModBusEvent: 类 net.minecraftforge.event.TickEvent$ClientTickEvent"

我该如何解决这个问题?过去三天我一直被困住。甚至再次观看了 java 12h 视频只是为了了解为什么这不起作用。

本来希望进入游戏,在单人游戏世界中,按“Y”键向左走。

java minecraft minecraft-forge forge
© www.soinside.com 2019 - 2024. All rights reserved.