fix: fix most OOBs, and also fix maxY in WorldPlugin

This commit is contained in:
ChomeNS
2024-11-02 18:18:47 +07:00
parent 3ad8b11494
commit b3615770dc
9 changed files with 24 additions and 5 deletions

View File

@@ -94,6 +94,8 @@ public class CommandHandlerPlugin {
final String[] splitInput = input.trim().split("\\s+");
if (splitInput.length == 0) return null;
final String commandName = splitInput[0];
final Command command = findCommand(commands, commandName);