Browse Source

[Hero 1] Nerf: Reduce max walls to 5

master
Luna 7 years ago
parent
commit
9975170677
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/heroes/1.gd

+ 1
- 1
scripts/heroes/1.gd View File

@ -8,7 +8,7 @@ func _ready():
placement.start_action = "hero_1_place_wall" placement.start_action = "hero_1_place_wall"
placement.confirm_action = "hero_1_confirm_wall" placement.confirm_action = "hero_1_confirm_wall"
placement.delete_action = "hero_1_remove_wall" placement.delete_action = "hero_1_remove_wall"
placement.max_placed = 100
placement.max_placed = 5
func _process(delta): func _process(delta):
if is_network_master(): if is_network_master():


Loading…
Cancel
Save