create combat banner

This commit is contained in:
2026-06-20 21:12:52 -07:00
parent 1a18c42b9e
commit 195b94076b
3 changed files with 29 additions and 5 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ execute_command :: proc(world: ^World, cmd: Command) {
switch cmd.kind {
case .None:
case .Place_Tower:
try_place_tower(world, cmd.gx, cmd.gy, .Archer)
try_place_tower(world, cmd.gx, cmd.gy, world.selected_tower)
case .Start_Wave:
start_wave(world)
}