From 99751706770d27147e5aff5621cd26aad5a7e665 Mon Sep 17 00:00:00 2001 From: Luna Date: Mon, 19 Feb 2018 19:27:17 -0500 Subject: [PATCH] [Hero 1] Nerf: Reduce max walls to 5 --- scripts/heroes/1.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/heroes/1.gd b/scripts/heroes/1.gd index 0a361f2..6572548 100644 --- a/scripts/heroes/1.gd +++ b/scripts/heroes/1.gd @@ -8,7 +8,7 @@ func _ready(): placement.start_action = "hero_1_place_wall" placement.confirm_action = "hero_1_confirm_wall" placement.delete_action = "hero_1_remove_wall" - placement.max_placed = 100 + placement.max_placed = 5 func _process(delta): if is_network_master():