Skip to content

Commit

Permalink
Move details in weapon attack messages to the top
Browse files Browse the repository at this point in the history
Part of #76.
  • Loading branch information
kmoschcau committed Dec 7, 2021
1 parent fd4868a commit 50826fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fire Axe
- Lumber Axe

### Changed

- the details section of weapon attack messages is listed first before hit and
damage roll
([#76](https://github.com/Wasteland-Ventures-Group/WV-VTT-module/issues/76))

## [0.6.0] - 2021-11-27

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export default function decorateWeaponAttack(
}

content.append(
getDetailsElement(flags),
getHitRollElement(flags),
getDamageRollElement(flags),
getDetailsElement(flags)
getDamageRollElement(flags)
);
}

Expand Down

0 comments on commit 50826fa

Please sign in to comment.