Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/main.gd
Original file line number Diff line number Diff line change
Expand Up @@ -853,10 +853,12 @@ func queue_structure_at(pos: Vector2i, kind: String) -> void:
func cancel_build_placement() -> void:
if pending_build_kind.is_empty():
return
var kind := pending_build_kind
pending_build_kind = ""
hover_tile_index = -1
world_label.text = "Colony"
world_label.text = "Colony • place another " + cap(pending_build_kind)
if not kind.is_empty():
world_label.text = "Colony • place another " + cap(kind)

func maybe_fire_event() -> void:
if tick % EVENT_INTERVAL_TICKS != 0:
Expand Down
Loading