Files
DiceCloud/app/imports/api/creature/creatureProperties/recomputeCreaturesByProperty.js
2023-10-03 16:28:20 +02:00

10 lines
254 B
JavaScript

import computeCreature from '/imports/api/engine/computeCreature';
/**
* Recomputes all ancestor creatures of this property
* @deprecated
*/
export default function recomputeCreaturesByProperty(property) {
computeCreature.call(property.root.id);
}