feat: Add core player input, movement, and special ability management systems with new UI components.

This commit is contained in:
Yogi Wiguna
2026-03-11 17:40:45 +08:00
parent 18c3dbecd6
commit 650d241a72
6 changed files with 104 additions and 90 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ func simple_move_to(grid_position: Vector2i) -> bool:
return false
# Check Floor 1 (Obstacles/Walls)
if (cell_item != -1 and cell_item in [4, 13, 16]) and not is_wall_passable:
if (cell_item != -1 and cell_item in [4, 16]) and not is_wall_passable:
print("[Move] Failed: Blocked by Item %d on Floor 1" % cell_item)
return false