Closed itrase closed 3 years ago
It seems to happen for monsters, but not for players.
Unless your players are using monster sheets I don't think it shouldn't be a problem.
true, but it helps the GM to see what modifiers are effecting the monsters, which is useful. Also, it seems to be a one-line fix in the PF2E rollHandler. from:
_rollSaveNpc(event, actor, actionId) {
actor.rollSave(event, actionId);
}
to:
_rollSaveNpc(event, actor, actionId) {
actor.data.data.saves[actionId].roll(event);
}
would fix it.
Thanks, itrase, I'll post a patch
The top roll is from TokenActionHUD, the bottom is by clicking in the character sheet. The rolls are being calculated correctly, the modifier boxes just aren't showing up.