mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -07:00
Fix TextWrapping issues; Now limits the packets send to the client to either: 119 chars or 320 width. This will strip disallowed characters, propagate colors properly to the next line and not 'eat' multiple color-codes.
This commit is contained in:
@@ -150,9 +150,9 @@ public abstract class Packet {
|
||||
}
|
||||
}
|
||||
|
||||
public abstract void a(DataInputStream datainputstream);
|
||||
public abstract void a(DataInputStream datainputstream) throws IOException; // CraftBukkit
|
||||
|
||||
public abstract void a(DataOutputStream dataoutputstream);
|
||||
public abstract void a(DataOutputStream dataoutputstream) throws IOException; // CraftBukkit
|
||||
|
||||
public abstract void a(NetHandler nethandler);
|
||||
|
||||
|
Reference in New Issue
Block a user