12.0.3 - L'hémorragie d'Astrobazzarh #704

Merged
uberwald merged 4 commits from VincentVk/foundryvtt-reve-de-dragon:v11 into v11 2024-07-01 22:21:28 +02:00
3 changed files with 5 additions and 0 deletions
Showing only changes of commit 40987149cc - Show all commits

View File

@ -1,4 +1,7 @@
# 12.0
## 12.0.3 - L'hémorragie d'Astrobazzarh
- **Support V12**
- On peut de nouveau ouvrir un acteur blessé après redémarrage du monde
## 12.0.2 - Les pluies d'Astrobazzarh
- **Support V12**

View File

@ -121,6 +121,7 @@ export class RdDBaseActor extends Actor {
return new ActorConstructor(docData, context);
}
}
context.rdd = undefined
super(docData, context);
}

View File

@ -189,6 +189,7 @@ export class RdDItem extends Item {
if (!docData.img) {
docData.img = RdDItem.getDefaultImg(docData.type);
}
context.rdd = undefined
super(docData, context);
}