Make decor occupy individual inventory slots

This commit is contained in:
Alexander Sellite 2026-09-01 17:29:57 -04:00
parent f2239d248a
commit 4196cda1d5
9 changed files with 516 additions and 79 deletions

View file

@ -10,7 +10,7 @@ display_name = "basic cube"
description = "a simple piece of decor for testing your RV layout."
category = 6
icon = ExtResource("2_icon")
stackable = true
stackable = false
max_stack = 32
usable = false
equippable = true

View file

@ -36,7 +36,6 @@ func is_valid() -> bool:
not item_id.is_empty()
and not display_name.strip_edges().is_empty()
and max_stack >= 1
and (stackable or max_stack == 1)
)