Only allow users to update the movement history for tokens they own

This commit is contained in:
Manuel Vögele
2021-04-29 00:20:24 +02:00
parent f0ef109658
commit 4671e6de51
+11
View File
@@ -11,7 +11,18 @@ export function updateCombatantDragRulerFlags(combat, updates) {
} }
async function _socketUpdateCombatantDragRulerFlags(combatId, updates) { async function _socketUpdateCombatantDragRulerFlags(combatId, updates) {
const user = game.users.get(this.socketdata.userId);
const combat = game.combats.get(combatId); const combat = game.combats.get(combatId);
const requestedUpdates = updates.length;
updates = updates.filter(update => {
const actor = combat.getCombatant(update._id).actor;
if (!actor)
return false;
return actor.hasPerm(user, "OWNER");
});
if (updates.length !== requestedUpdates) {
console.warn(`Some of the movement history updates requested by user '${game.users.get(this.socketdata.userId).name}' were not performed because the user lacks owner permissions for those tokens`);
}
updates = updates.map(update => { updates = updates.map(update => {
return {_id: update._id, flags: {dragRuler: update.dragRulerFlags}}; return {_id: update._id, flags: {dragRuler: update.dragRulerFlags}};
}); });