Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Improved the shield handling (1.9->1.8)
Dieser Commit ist enthalten in:
Ursprung
d8f55006ff
Commit
8e20df57a9
@ -306,10 +306,10 @@ public class WorldPackets {
|
||||
Item item = Protocol1_9TO1_8.getHandItem(wrapper.user());
|
||||
// Blocking patch
|
||||
if (Via.getConfig().isShieldBlocking()) {
|
||||
if (item != null) {
|
||||
if (Protocol1_9TO1_8.isSword(item.getId())) {
|
||||
if (hand == 0) {
|
||||
EntityTracker tracker = wrapper.user().get(EntityTracker.class);
|
||||
|
||||
if (item != null && Protocol1_9TO1_8.isSword(item.getId())) {
|
||||
if (hand == 0) {
|
||||
if (!tracker.isBlocking()) {
|
||||
tracker.setBlocking(true);
|
||||
Item shield = new Item((short) 442, (byte) 1, (short) 0, null);
|
||||
@ -317,7 +317,9 @@ public class WorldPackets {
|
||||
}
|
||||
wrapper.cancel();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
tracker.setSecondHand(null);
|
||||
tracker.setBlocking(false);
|
||||
}
|
||||
}
|
||||
wrapper.write(Type.ITEM, item);
|
||||
|
@ -162,6 +162,8 @@ public class EntityTracker extends StoredObject {
|
||||
if (validBlocking.contains(entityID)) {
|
||||
Item shield = new Item((short) 442, (byte) 1, (short) 0, null);
|
||||
setSecondHand(entityID, shield);
|
||||
} else {
|
||||
setSecondHand(entityID, null);
|
||||
}
|
||||
} else {
|
||||
setSecondHand(entityID, null);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren