We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 052ed37 commit 0598246Copy full SHA for 0598246
src/module/actor/entity.js
@@ -26,8 +26,10 @@ export default class OseActor extends Actor {
26
source.prototypeToken.texture.img = "icons/svg/mystery-man.svg";
27
}
28
// Fixing missing movement.value by moving it to details.movement
29
- if (source?.system?.movement?.value && !source?.system?.details.movement)
+ if (source?.system?.movement?.value && !source?.system?.details.movement){
30
source.system.details.movement = source.system.movement.value;
31
+ delete source.system.movement.value;
32
+ }
33
34
return source;
35
0 commit comments