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
|
2023-02-19 15:57:10 +01:00
|
|
|
index 2f256d0452617c8f2630f0dd8f16025c9b2e0cae..da7503dca8ab4f7234bf296dfacf39e466de700a 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-02-17 03:07:30 +01:00
|
|
|
@@ -255,6 +255,7 @@ public class Commands {
|
2021-06-11 14:02:28 +02:00
|
|
|
command = event.getCommand();
|
|
|
|
|
|
|
|
String[] args = command.split(" ");
|
|
|
|
+ if (args.length == 0) return 0; // Paper - empty commands shall not be dispatched
|
|
|
|
|
|
|
|
String cmd = args[0];
|
|
|
|
if (cmd.startsWith("minecraft:")) cmd = cmd.substring("minecraft:".length());
|