Add missing `CallbackInfo`

This commit is contained in:
Brady 2023-06-20 17:30:38 -05:00
parent 2a82f6048a
commit 57a17e907e
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 1 additions and 1 deletions

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;
}