move body property to the right place
This commit is contained in:
parent
a4e3605d99
commit
dd8899163c
1 changed files with 2 additions and 2 deletions
|
@ -670,8 +670,6 @@ public class EntityPropertyRegistryImpl implements EntityPropertyRegistry {
|
|||
|
||||
if (!ver.isNewerThanOrEquals(ServerVersion.V_1_20)) return;
|
||||
|
||||
register(new EquipmentProperty(packetFactory, "body", EquipmentSlot.BODY));
|
||||
|
||||
// Camel
|
||||
int camelIndex = 18;
|
||||
register(new BooleanProperty("bashing", camelIndex++, false, legacyBooleans));
|
||||
|
@ -690,6 +688,8 @@ public class EntityPropertyRegistryImpl implements EntityPropertyRegistry {
|
|||
|
||||
if (!ver.isNewerThanOrEquals(ServerVersion.V_1_21)) return;
|
||||
|
||||
register(new EquipmentProperty(packetFactory, "body", EquipmentSlot.BODY));
|
||||
|
||||
// Bogged
|
||||
register(new BooleanProperty("bogged_sheared", 16, false, legacyBooleans));
|
||||
|
||||
|
|
Loading…
Reference in a new issue