2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Mariell Hoversholm <proximyst@proximyst.com>
|
|
|
|
Date: Wed, 6 Jan 2021 23:38:43 +0100
|
|
|
|
Subject: [PATCH] Empty commands shall not be dispatched
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java
|
2024-01-23 12:06:27 +01:00
|
|
|
index d39743d9626eb01c942194387dafb1106f13601b..0741c0f85536c5188d8552e999943a9c771a548e 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/commands/Commands.java
|
|
|
|
+++ b/src/main/java/net/minecraft/commands/Commands.java
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -287,6 +287,7 @@ public class Commands {
|
2021-06-11 14:02:28 +02:00
|
|
|
command = event.getCommand();
|
|
|
|
|
|
|
|
String[] args = command.split(" ");
|
2023-12-06 19:21:23 +01:00
|
|
|
+ if (args.length == 0) return; // Paper - empty commands shall not be dispatched
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
String cmd = args[0];
|
|
|
|
if (cmd.startsWith("minecraft:")) cmd = cmd.substring("minecraft:".length());
|