Skip to content

Commit

Permalink
Floor Advanced Alchemy
Browse files Browse the repository at this point in the history
  • Loading branch information
7H3LaughingMan committed Dec 12, 2024
1 parent 82ff49b commit c1bd7ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packs/classfeatures/advanced-alchemy.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"isDailyPrep": true,
"key": "CraftingAbility",
"label": "PF2E.SpecificRule.Alchemist.AdvancedAlchemy",
"maxSlots": "4 + @actor.system.abilities.int.mod",
"maxSlots": "floor(4 + @actor.system.abilities.int.mod)",
"slug": "advanced-alchemy"
}
],
Expand Down
2 changes: 1 addition & 1 deletion packs/feats/advanced-efficient-alchemy.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"key": "ActiveEffectLike",
"mode": "upgrade",
"path": "system.crafting.entries.advancedAlchemy.maxSlots",
"value": "ternary(gte(@actor.level,16),10,8) + @actor.system.abilities.int.mod"
"value": "floor(ternary(gte(@actor.level,16),10,8) + @actor.system.abilities.int.mod)"
}
],
"traits": {
Expand Down
2 changes: 1 addition & 1 deletion packs/feats/efficient-alchemy-alchemist.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"key": "ActiveEffectLike",
"mode": "upgrade",
"path": "system.crafting.entries.advancedAlchemy.maxSlots",
"value": "6 + @actor.system.abilities.int.mod"
"value": "floor(6 + @actor.system.abilities.int.mod)"
}
],
"traits": {
Expand Down

0 comments on commit c1bd7ac

Please sign in to comment.