mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2025-03-11 14:25:12 +01:00
Fix name of deprecated BED packet
Might fix compatibility with 1.8
This commit is contained in:
parent
b1efed0c0c
commit
f46bd56e8f
@ -260,7 +260,13 @@ public class PacketType implements Serializable, Cloneable, Comparable<PacketTyp
|
||||
* @deprecated Removed in 1.14
|
||||
*/
|
||||
@Deprecated
|
||||
public static final PacketType USE_BED = new PacketType(PROTOCOL, SENDER, 0x33, 0x33, "UseBed");
|
||||
public static final PacketType BED = new PacketType(PROTOCOL, SENDER, 0x33, 0x33, "Bed");
|
||||
|
||||
/**
|
||||
* @deprecated Renamed to {@link #BED}
|
||||
*/
|
||||
@Deprecated
|
||||
public static final PacketType USE_BED = BED.clone();
|
||||
|
||||
private final static Server INSTANCE = new Server();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user