Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
be13705177
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes: 6b8cd9a7 SPIGOT-6207: forcibly drop the items of a converted zombie villager
19 Zeilen
930 B
Diff
19 Zeilen
930 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/CommandDispatcher.java b/src/main/java/net/minecraft/commands/CommandDispatcher.java
|
|
index 07d3dec9f613013aac72f3f5db17089ebe5ee770..a70e0761aeddee8fafff971b5cbd0422ab560fb5 100644
|
|
--- a/src/main/java/net/minecraft/commands/CommandDispatcher.java
|
|
+++ b/src/main/java/net/minecraft/commands/CommandDispatcher.java
|
|
@@ -223,6 +223,7 @@ public class CommandDispatcher {
|
|
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());
|