Gameplay changes

This commit is contained in:
2026-03-12 15:57:15 -04:00
parent 3a744290eb
commit 6d11481ce8
7 changed files with 223 additions and 13 deletions
+4 -1
View File
@@ -126,8 +126,11 @@ const DEFAULT_PARTS: Array[String] = [
func _rebuild_items() -> void:
_items.clear()
# Add default parts first (always available)
# Add default parts first (always available), except default_head
for path: String in DEFAULT_PARTS:
# Skip default head - not shown as equippable
if "head_default" in path:
continue
var part := load(path) as BodyPartData
if part:
_items.append(part)