mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
35 lines
1.5 KiB
Diff
35 lines
1.5 KiB
Diff
From cdebce86adaadaadf62ba9da318d1b391499d756 Mon Sep 17 00:00:00 2001
|
|
From: riking <rikingcoding@gmail.com>
|
|
Date: Wed, 14 May 2014 13:46:48 -0700
|
|
Subject: [PATCH] Process conversation input on the main thread. Fixes
|
|
BUKKIT-5611
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
index c80e06f..024ec84 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -835,7 +835,18 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
} else if (s.isEmpty()) {
|
|
c.warn(this.player.getName() + " tried to send an empty message");
|
|
} else if (getPlayer().isConversing()) {
|
|
- getPlayer().acceptConversationInput(s);
|
|
+ // Spigot start
|
|
+ final String message = s;
|
|
+ this.minecraftServer.processQueue.add( new Waitable()
|
|
+ {
|
|
+ @Override
|
|
+ protected Object evaluate()
|
|
+ {
|
|
+ getPlayer().acceptConversationInput( message );
|
|
+ return null;
|
|
+ }
|
|
+ } );
|
|
+ // Spigot end
|
|
} else if (this.player.getChatFlags() == EnumChatVisibility.SYSTEM) { // Re-add "Command Only" flag check
|
|
ChatMessage chatmessage = new ChatMessage("chat.cannotSend", new Object[0]);
|
|
|
|
--
|
|
1.9.1
|
|
|