SteamWar/BauSystem2.0
Archiviert
12
0

Fix /minecraft:... commands in script system
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-08-08 05:51:43 +02:00
Ursprung ab35286f97
Commit 7ae525391e

Datei anzeigen

@ -135,6 +135,9 @@ public final class ScriptExecutor {
continue;
}
if (strings[0].contains(":")) {
continue;
}
PlayerCommandPreprocessEvent preprocessEvent = new PlayerCommandPreprocessEvent(player, "/" + (specialCommand != null && command.startsWith(specialCommand) ? "script:" : "") + command);
Bukkit.getServer().getPluginManager().callEvent(preprocessEvent);