Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
handle new window type in 1.16
Dieser Commit ist enthalten in:
Ursprung
47b43402f5
Commit
5009ffbb5a
@ -21,6 +21,23 @@ public class InventoryPackets {
|
|||||||
public static void register(Protocol protocol) {
|
public static void register(Protocol protocol) {
|
||||||
ItemRewriter itemRewriter = new ItemRewriter(protocol, InventoryPackets::toClient, InventoryPackets::toServer);
|
ItemRewriter itemRewriter = new ItemRewriter(protocol, InventoryPackets::toClient, InventoryPackets::toServer);
|
||||||
|
|
||||||
|
// Open Window
|
||||||
|
protocol.registerOutgoing(State.PLAY, 0x2F, 0x2F, new PacketRemapper() {
|
||||||
|
@Override
|
||||||
|
public void registerMap() {
|
||||||
|
map(Type.VAR_INT);
|
||||||
|
map(Type.VAR_INT);
|
||||||
|
map(Type.STRING);
|
||||||
|
|
||||||
|
handler(wrapper -> {
|
||||||
|
int windowType = wrapper.get(Type.VAR_INT, 1);
|
||||||
|
if (windowType >= 20) { // smithing added with id 20
|
||||||
|
wrapper.set(Type.VAR_INT, 1, ++windowType);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Window Property
|
// Window Property
|
||||||
protocol.registerOutgoing(State.PLAY, 0x16, 0x16, new PacketRemapper() {
|
protocol.registerOutgoing(State.PLAY, 0x16, 0x16, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren