Skip to content

Commit

Permalink
Update combat_page.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitsunemitsu committed Jan 6, 2025
1 parent f042e2f commit e442085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ModularTegustation/tegu_items/!combat_page/combat_page.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ GLOBAL_VAR_INIT(combat_points, 0)
switch(spawn_type)
if("all")
for(var/mob/living/simple_animal/hostile/L in spawn_enemies)
new L(current_spawn)
//L.can_patrol = TRUE
L = new L(current_spawn)
L.can_patrol = TRUE
L.faction = "hostile"
if("random")
var/mob/living/simple_animal/hostile/L = pick(spawn_enemies)
new L(current_spawn)
L = new L(current_spawn)
//L.can_patrol = TRUE
L.faction = "hostile"
spawn_number -= 1
Expand Down

0 comments on commit e442085

Please sign in to comment.