v13.0.16 - La paix d'Illysis #782

Merged
uberwald merged 3 commits from :v13 into v13 2025-11-02 09:55:26 +01:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit f83fdb3b8f - Show all commits

View File

@@ -1,4 +1,9 @@
# 13.0
## 13.0.16 - La paix d'Illysis
- Fenêtre de jet v2
- on peut faire des jets en dehors des combats
## 13.0.15 - Les pièces d'Illysis
- On peut de nouveau acheter dans les commerces

View File

@@ -58,9 +58,9 @@ export class RdDCombatManager extends Combat {
static getCombatant(actorId, tokenId) {
return game.combat.combatants.find(it => it.actor.id == actorId &&
return game.combat?.combatants.find(it => it.actor.id == actorId &&
it.token.id == tokenId
);
)
}
/* -------------------------------------------- */
async nextRound() {