mirror of
https://github.com/PaperMC/Paper.git
synced 2024-10-31 16:00:18 +01:00
19 lines
883 B
Diff
19 lines
883 B
Diff
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
|
|
index 2fb4660147294de9e9dec70bc3527327f2d859ee..83091987b320171ef9071cbef6b10a1bd72d38e2 100644
|
|
--- a/src/main/java/net/minecraft/commands/Commands.java
|
|
+++ b/src/main/java/net/minecraft/commands/Commands.java
|
|
@@ -290,6 +290,7 @@ public class Commands {
|
|
command = event.getCommand();
|
|
|
|
String[] args = command.split(" ");
|
|
+ if (args.length == 0) return; // Paper - empty commands shall not be dispatched
|
|
|
|
String cmd = args[0];
|
|
if (cmd.startsWith("minecraft:")) cmd = cmd.substring("minecraft:".length());
|