@@ -64,6 +64,7 @@ public CraftEquippableComponent(Map<String, Object> map) {
64
64
Boolean dispensable = SerializableMeta .getObject (Boolean .class , map , "dispensable" , true );
65
65
Boolean swappable = SerializableMeta .getObject (Boolean .class , map , "swappable" , true );
66
66
Boolean damageOnHurt = SerializableMeta .getObject (Boolean .class , map , "damage-on-hurt" , true );
67
+ Boolean equipOnInteract = SerializableMeta .getObject (Boolean .class , map , "equip-on-interact" , true );
67
68
68
69
this .handle = new Equippable (slot ,
69
70
(equipSound != null ) ? CraftSound .bukkitToMinecraftHolder (equipSound ) : SoundEvents .ARMOR_EQUIP_GENERIC ,
@@ -73,7 +74,7 @@ public CraftEquippableComponent(Map<String, Object> map) {
73
74
(dispensable != null ) ? dispensable : true ,
74
75
(swappable != null ) ? swappable : true ,
75
76
(damageOnHurt != null ) ? damageOnHurt : true ,
76
- false
77
+ ( equipOnInteract != null ) ? equipOnInteract : false
77
78
);
78
79
}
79
80
@@ -98,6 +99,7 @@ public Map<String, Object> serialize() {
98
99
result .put ("dispensable" , this .isDispensable ());
99
100
result .put ("swappable" , this .isSwappable ());
100
101
result .put ("damage-on-hurt" , this .isDamageOnHurt ());
102
+ result .put ("equip-on-interact" , this .isEquipOnInteract ());
101
103
102
104
return result ;
103
105
}
0 commit comments