Add missing CallbackInfo

This commit is contained in:
Brady
2023-06-20 17:30:38 -05:00
parent 2a82f6048a
commit 57a17e907e

View File

@@ -101,7 +101,7 @@ public class MixinMinecraft {
method = "runTick",
at = @At("RETURN")
)
private void postRunTick() {
private void postRunTick(CallbackInfo ci) {
if (this.tickProvider == null) {
return;
}