From b6b55848c8ddcd9a60c50d534c2a9083f51bf56d Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 21 Nov 2022 22:24:03 -0500 Subject: [PATCH] adds 1 more radius to the arena teleport (#19738) --- .../mob/living/simple_animal/hostile/mining/elites/elite.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining/elites/elite.dm b/code/modules/mob/living/simple_animal/hostile/mining/elites/elite.dm index b9256c82484..50c290a8009 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining/elites/elite.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining/elites/elite.dm @@ -358,7 +358,7 @@ While using this makes the system rely on OnFire, it still gives options for tim else to_chat(M, "Only spectators are allowed, while the arena is in combat...") invaders += M - var/list/valid_turfs = RANGE_EDGE_TURFS(ARENA_RADIUS + 1, src) + var/list/valid_turfs = RANGE_EDGE_TURFS(ARENA_RADIUS + 2, src) // extra safety M.forceMove(pick(valid_turfs)) //Doesn't check for lava. Don't cheese it. playsound(M, 'sound/effects/phasein.ogg', 200, 0, 50, TRUE, TRUE)