Fixed failing tests

This commit is contained in:
ThaumRystra
2025-01-16 16:24:56 +02:00
parent a2d2f43bed
commit 0bf8fdc6d3
79 changed files with 268 additions and 649 deletions

View File

@@ -34,7 +34,8 @@ export default function buildCreatureComputation(creatureId: string) {
const creature = getCreature(creatureId);
if (!creature) {
throw new Meteor.Error('not-found',
'Build computation failed, the creature was not found'
'Build computation failed, the creature was not found.' +
'\nid: ' + creatureId
);
}
const variables = getVariables(creatureId);