Change equipment option to screw up people who disabled it
This commit is contained in:
parent
8401f9b091
commit
bdbaa95fae
@ -105,7 +105,7 @@ PacketsEnabled:
|
|||||||
EntityStatus: true
|
EntityStatus: true
|
||||||
# Entity equipment is the packets that are sent to ensure that a disguise has or doesn't have armor, and their held item.
|
# Entity equipment is the packets that are sent to ensure that a disguise has or doesn't have armor, and their held item.
|
||||||
# Disabling this means that any disguises which can wear armor or hold items will show the armor/held item that the disguised is wearing.
|
# Disabling this means that any disguises which can wear armor or hold items will show the armor/held item that the disguised is wearing.
|
||||||
Enquipment: true
|
Equipment: true
|
||||||
# This doesn't actually disable the packet. It would introduce problems. Instead it does the next best thing and caches the data.
|
# This doesn't actually disable the packet. It would introduce problems. Instead it does the next best thing and caches the data.
|
||||||
# This means that entity metadata will not change, and will only be sent in the spawn packet.
|
# This means that entity metadata will not change, and will only be sent in the spawn packet.
|
||||||
# This is good if performance is extremely in need.
|
# This is good if performance is extremely in need.
|
||||||
|
@ -73,7 +73,7 @@ public class DisguiseConfig {
|
|||||||
setMiscDisguisesForLivingEnabled(config.getBoolean("MiscDisguisesForLiving"));
|
setMiscDisguisesForLivingEnabled(config.getBoolean("MiscDisguisesForLiving"));
|
||||||
setMovementPacketsEnabled(config.getBoolean("PacketsEnabled.Movement"));
|
setMovementPacketsEnabled(config.getBoolean("PacketsEnabled.Movement"));
|
||||||
setWitherSkullPacketsEnabled(config.getBoolean("PacketsEnabled.WitherSkull"));
|
setWitherSkullPacketsEnabled(config.getBoolean("PacketsEnabled.WitherSkull"));
|
||||||
setEnquipmentPacketsEnabled(config.getBoolean("PacketsEnabled.Enquipment"));
|
setEquipmentPacketsEnabled(config.getBoolean("PacketsEnabled.Equipment"));
|
||||||
setAnimationPacketsEnabled(config.getBoolean("PacketsEnabled.Animation"));
|
setAnimationPacketsEnabled(config.getBoolean("PacketsEnabled.Animation"));
|
||||||
setBedPacketsEnabled(config.getBoolean("PacketsEnabled.Bed"));
|
setBedPacketsEnabled(config.getBoolean("PacketsEnabled.Bed"));
|
||||||
setRidingPacketsEnabled(config.getBoolean("PacketsEnabled.Riding"));
|
setRidingPacketsEnabled(config.getBoolean("PacketsEnabled.Riding"));
|
||||||
|
Loading…
Reference in New Issue
Block a user