Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Commit

Permalink
Closes #245. Initial display respects display mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
trioderegion committed Mar 19, 2022
1 parent 1860370 commit 1f92c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/modules/ActionManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class ActionManagement{
for(let combatant of combat.combatants){
const token = combatant.token.object;
await token.resetActionFlag();
await token.renderActionContainer(combatant.token.object._controlled);
await token.renderActionContainer(combatant.token.object._controlled && MODULE.setting('actionMgmtDisplay') == 1 );
await token.updateActionMarkers();
}

Expand Down

0 comments on commit 1f92c11

Please sign in to comment.