Stops scrap from dropping in practice room and reworks hivemind, removes prod notes as well

This commit is contained in:
2026-03-09 20:54:41 -04:00
parent 06610df780
commit df6ee3990f
3 changed files with 452 additions and 239 deletions
+2
View File
@@ -85,6 +85,8 @@ func _die() -> void:
queue_free()
func _spawn_drop() -> void:
if not RunManager.run_active:
return # No drops in practice/hub
var orb = preload("res://scenes/enemies/currency_orb.tscn").instantiate()
orb.position = (get_parent() as Node2D).to_local(global_position)
get_parent().call_deferred("add_child", orb)