Make confirm tasks synchronous. It was changed in 7ac3f7ca03 (#3551)

This commit is contained in:
Jordan 2022-03-23 14:04:39 +00:00 committed by GitHub
parent ec77812879
commit b9bd9b81e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ public class Confirm extends SubCommand {
player.sendMessage(TranslatableCaption.of("confirm.expired_confirm")); player.sendMessage(TranslatableCaption.of("confirm.expired_confirm"));
return false; return false;
} }
TaskManager.runTaskAsync(command.command); TaskManager.runTask(command.command);
return true; return true;
} }