fix(attachments): add default value for attachment_type to fix dataclass init error

This commit is contained in:
LemonNexus 2026-02-09 09:34:01 +00:00
parent d24d5e149e
commit d5ddb0deb7
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class Attachment:
name: str
item_id: str
decay_pec: Decimal
attachment_type: str # e.g., 'amplifier', 'scope', 'absorber'
attachment_type: str = "" # e.g., 'amplifier', 'scope', 'absorber'
# Effects
damage_bonus: Decimal = Decimal('0')