Skip to content

Commit

Permalink
Merge branch 'hotfix/2.33.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmlessHarm committed Dec 6, 2024
2 parents 35bcced + 3c86c61 commit 0cd5ccf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/UserContent/Npcs/EditNpc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ export default {
for (const roll of sub_action.rolls) {
roll.options = {
[versTwoName]: {
damage_type: roll.versatile_damage_type,
dice_count: roll.versatile_dice_count,
dice_type: roll.versatile_dice_type,
fixed_val: roll.versatile_fixed_val,
damage_type: roll.versatile_damage_type || null,
dice_count: roll.versatile_dice_count || null,
dice_type: roll.versatile_dice_type || null,
fixed_val: roll.versatile_fixed_val || null,
},
};
delete roll.versatile_damage_type;
Expand Down

0 comments on commit 0cd5ccf

Please sign in to comment.