Skip to content

Commit

Permalink
closes #352
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed May 5, 2024
1 parent 5c2ddfc commit b46a322
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# v11.9.4

## Enhancent
- [#352] Add the ability to easily adjust an NPC's calculated Carry Weight on the NPC sheet

## Bugs
- [#347] Availability Roll trigger not available on Robot character sheet
- [#350] Don't show the Luck points field on Creatures as they don't have them
Expand Down
23 changes: 17 additions & 6 deletions system/templates/actor/npc/partials/carry-weight.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@
</h4>
<div class="text-center">
<label>
<input
class="num-short-3"
type="number"
name="system.carryWeight.base"
value="{{system.carryWeight.base}}"
>
{{system.carryWeight.base}}
{{#if useKgs}}
{{localize "FALLOUT.TEMPLATES.kgs"}}
{{else}}
{{localize "FALLOUT.TEMPLATES.lbs"}}
{{/if}}
+
</label>
<input
type="number"
name="system.carryWeight.mod"
class="num-short-3"
value="{{system.carryWeight.mod}}"
>
<label>
=
{{system.carryWeight.value}}
{{#if useKgs}}
{{localize "FALLOUT.TEMPLATES.kgs"}}
{{else}}
Expand Down

0 comments on commit b46a322

Please sign in to comment.