diff --git a/changelog.md b/changelog.md index 17b9f84a..517c57e0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,7 @@ # 12.0 +## 12.0.50 - Le sommeil d'Astrobazzarh +- Le don de double rêve n'interrompt plus le sommeil toutes les heures + ## 12.0.49 - La deuxième lame d'Astrobazzarh - Corrections - les défenses particulières sont correctement affichées diff --git a/module/actor.js b/module/actor.js index 0a6dc771..70dee30e 100644 --- a/module/actor.js +++ b/module/actor.js @@ -484,7 +484,7 @@ export class RdDActor extends RdDBaseActorSang { await this.$recupererFatigue(message); await this.$jetRecuperationReve(dormi, message); if (dormi.etat == 'dort' && EffetsDraconiques.isDonDoubleReve(this)) { - dormi.etat = await this.$jetRecuperationReve(dormi, message); + await this.$jetRecuperationReve(dormi, message); } } }