Skip to content

Commit

Permalink
Show skill replacements before medicine in treat wounds dialog (found…
Browse files Browse the repository at this point in the history
  • Loading branch information
ceejii authored Dec 4, 2024
1 parent 4eb14ae commit 6a8bf3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/macros/treat-wounds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ async function treatWounds(options: ActionDefaultOptions): Promise<void> {
<div class="form-group">
<label for="skill-${domIdAppend}">${game.i18n.localize("PF2E.Actions.TreatWounds.SkillSelect")}</label>
<select id="skill-${domIdAppend}"${!chirurgeon && !naturalMedicine ? " disabled" : ""}>
<option value="medicine">${medicineName}</option>
${chirurgeon ? `<option value="crafting">${game.i18n.localize("PF2E.Skill.Crafting")}</option>` : ``}
${naturalMedicine ? `<option value="nature">${game.i18n.localize("PF2E.Skill.Nature")}</option>` : ``}
<option value="medicine">${medicineName}</option>
</select>
</div>
<div class="form-group">
Expand Down

0 comments on commit 6a8bf3a

Please sign in to comment.