Fix the range on archer

This commit is contained in:
2026-06-14 01:11:51 -07:00
parent 89cae24c03
commit aea63986a2
+1 -1
View File
@@ -21,7 +21,7 @@ Tower_Archetype :: struct {
}
TOWER_ARCHETYPES: [Tower_Kind]Tower_Archetype = {
.Archer = {kind = .Archer, range = 20, damage = 12, fire_rate = 0.45, cost = TOWER_COST},
.Archer = {kind = .Archer, range = 50, damage = 12, fire_rate = 0.45, cost = TOWER_COST},
}
get_archetype :: proc(kind: Tower_Kind) -> Tower_Archetype {