Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Read player digging action as var int
Does not matter for small numbers, but properly reflects Vanilla's reading/writing type
Dieser Commit ist enthalten in:
Ursprung
ff5ad2385c
Commit
d80735e248
@ -88,9 +88,8 @@ public class PlayerPackets {
|
||||
protocol.registerServerbound(ServerboundPackets1_14.PLAYER_DIGGING, new PacketRemapper() {
|
||||
@Override
|
||||
public void registerMap() {
|
||||
map(Type.VAR_INT);
|
||||
map(Type.POSITION1_14, Type.POSITION);
|
||||
map(Type.BYTE);
|
||||
map(Type.VAR_INT); // Action
|
||||
map(Type.POSITION1_14, Type.POSITION); // Position
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -282,13 +282,12 @@ public class WorldPackets {
|
||||
protocol.registerServerbound(ServerboundPackets1_9.PLAYER_DIGGING, new PacketRemapper() {
|
||||
@Override
|
||||
public void registerMap() {
|
||||
map(Type.VAR_INT, Type.UNSIGNED_BYTE); // 0 - Status
|
||||
map(Type.POSITION); // 1 - Position
|
||||
map(Type.BYTE); // 2 - Face
|
||||
map(Type.VAR_INT); // Action
|
||||
map(Type.POSITION); // Position
|
||||
handler(new PacketHandler() {
|
||||
@Override
|
||||
public void handle(PacketWrapper wrapper) throws Exception {
|
||||
int status = wrapper.get(Type.UNSIGNED_BYTE, 0);
|
||||
int status = wrapper.get(Type.VAR_INT, 0);
|
||||
if (status == 6)
|
||||
wrapper.cancel();
|
||||
}
|
||||
@ -297,7 +296,7 @@ public class WorldPackets {
|
||||
handler(new PacketHandler() {
|
||||
@Override
|
||||
public void handle(PacketWrapper wrapper) throws Exception {
|
||||
int status = wrapper.get(Type.UNSIGNED_BYTE, 0);
|
||||
int status = wrapper.get(Type.VAR_INT, 0);
|
||||
if (status == 5 || status == 4 || status == 3) {
|
||||
EntityTracker1_9 entityTracker = wrapper.user().getEntityTracker(Protocol1_9To1_8.class);
|
||||
if (entityTracker.isBlocking()) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren