diff --git a/src/lib/components/Output/Print/Weapons/Beam/index.svelte b/src/lib/components/Output/Print/Weapons/Beam/index.svelte index 899a8bd..b42a6ec 100644 --- a/src/lib/components/Output/Print/Weapons/Beam/index.svelte +++ b/src/lib/components/Output/Print/Weapons/Beam/index.svelte @@ -1,14 +1,14 @@
- {weapon_class} + {weaponClass}
diff --git a/src/lib/components/Output/Print/Weapons/index.svelte b/src/lib/components/Output/Print/Weapons/index.svelte index edb7d6f..307318d 100644 --- a/src/lib/components/Output/Print/Weapons/index.svelte +++ b/src/lib/components/Output/Print/Weapons/index.svelte @@ -11,7 +11,7 @@ export let weapons = []; let beams = []; - $: beams = weapons.filter(({ weapon_type }) => weapon_type === "beam"); + $: beams = weapons.filter(({ type }) => type === "beam");