mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
36 lines
1.7 KiB
Diff
36 lines
1.7 KiB
Diff
From ed1c8f0c588306e8594a62d8e45d4ee97fdeef8a Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
Date: Wed, 26 Feb 2014 14:45:22 +0000
|
|
Subject: [PATCH] Normalize spaces on when reading a chat packet
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PacketPlayInChat.java b/src/main/java/net/minecraft/server/PacketPlayInChat.java
|
|
index d419f0f..b26c290 100644
|
|
--- a/src/main/java/net/minecraft/server/PacketPlayInChat.java
|
|
+++ b/src/main/java/net/minecraft/server/PacketPlayInChat.java
|
|
@@ -17,7 +17,7 @@ public class PacketPlayInChat extends Packet {
|
|
}
|
|
|
|
public void a(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws
|
|
- this.message = packetdataserializer.c(100);
|
|
+ this.message = org.apache.commons.lang.StringUtils.normalizeSpace( packetdataserializer.c( 100 ) ); // Spigot
|
|
}
|
|
|
|
public void b(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
index b01b6d4..55db414 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -792,7 +792,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
this.player.v();
|
|
String s = packetplayinchat.c();
|
|
|
|
- s = StringUtils.normalizeSpace(s);
|
|
+ // s = StringUtils.normalizeSpace(s); Spigot - Moved to PacketPlayInChat
|
|
|
|
for (int i = 0; i < s.length(); ++i) {
|
|
if (!SharedConstants.isAllowedChatCharacter(s.charAt(i))) {
|
|
--
|
|
1.8.3.2
|
|
|