diff --git a/module/item-arme.js b/module/item-arme.js index 00edc4a3..67fb3dd1 100644 --- a/module/item-arme.js +++ b/module/item-arme.js @@ -166,7 +166,11 @@ export class RdDItemArme extends Item { } static isArmeUtilisable(arme) { - return arme.type == TYPES.arme && arme.system.equipe && (arme.system.resistance > 0 || arme.system.portee_courte > 0); + switch (arme.type) { + case TYPES.arme: return arme.system.equipe && (arme.system.resistance > 0 || arme.system.portee_courte > 0) + case TYPES.competencecreature: return true + } + return false } static ajoutCorpsACorps(armes, actor) {