Fix XP sort

This commit is contained in:
2021-02-03 23:27:55 +01:00
parent d316fa1661
commit 5a2176fef8
2 changed files with 16 additions and 0 deletions

View File

@ -704,6 +704,17 @@ export class RdDActor extends Actor {
}
}
/* -------------------------------------------- */
async updateCompetenceXPSort(compName, compValue) {
let comp = this.getCompetence(compName);
if (comp) {
const update = { _id: comp._id, 'data.xp_sort': compValue };
const updated = await this.updateEmbeddedEntity("OwnedItem", update); // Updates one EmbeddedEntity
} else {
console.log("Competence not found", compName);
}
}
/* -------------------------------------------- */
async updateCompetenceArchetype(compName, compValue) {
let comp = this.getCompetence(compName);