Files
DiceCloud/app/imports/api/creature/creatureProperties/getRootCreatureAncestor.js
ThaumRystra 5a2df36e8b Began migrating action engine to async
To suspending actions to await user input
2023-11-13 00:24:51 +02:00

6 lines
176 B
JavaScript

import { getCreature } from '/imports/api/engine/loadCreatures';
export default function getRootCreatureAncestor(property) {
return getCreature(property.ancestors[0].id);
}