mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-07 05:14:16 +02:00
Fixed translations. Fixed actions without Effects causing errors in Homebrew ItemFeatures
This commit is contained in:
parent
607ee3b580
commit
702c9e0b6a
6 changed files with 10 additions and 9 deletions
|
|
@ -453,7 +453,7 @@ export const allArmorFeatures = () => {
|
|||
const feature = homebrewFeatures[key];
|
||||
const actions = feature.actions.map(action => ({
|
||||
...action,
|
||||
effects: action.effects.map(effect => feature.effects.find(x => x.id === effect._id)),
|
||||
effects: action.effects?.map(effect => feature.effects.find(x => x.id === effect._id))??[],
|
||||
type: action.type
|
||||
}));
|
||||
const actionEffects = actions.flatMap(a => a.effects);
|
||||
|
|
@ -1389,7 +1389,7 @@ export const allWeaponFeatures = () => {
|
|||
|
||||
const actions = feature.actions.map(action => ({
|
||||
...action,
|
||||
effects: action.effects.map(effect => feature.effects.find(x => x.id === effect._id)),
|
||||
effects: action.effects?.map(effect => feature.effects.find(x => x.id === effect._id))??[],
|
||||
type: action.type
|
||||
}));
|
||||
const actionEffects = actions.flatMap(a => a.effects);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue