From 3df671f8d06cb59fff94db9d0aaa6f8b28cda87f Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 18 Feb 2013 22:52:41 +0100 Subject: [PATCH] Attempt to fix issue #2371 - Halves drone speed - Copied over the exact values from space-carp for spaceproofness, though it should already have worked before - Untested(whooo uni) --- .../mob/living/simple_animal/hostile/retaliate/drone.dm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm index fe6f3c7ba43..5edb88c7682 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm @@ -19,7 +19,7 @@ stop_automated_movement_when_pulled = 0 health = 300 maxHealth = 300 - speed = 4 + speed = 8 projectiletype = /obj/item/projectile/beam/drone projectilesound = 'sound/weapons/laser3.ogg' destroy_surroundings = 0 @@ -35,11 +35,16 @@ var/disabled = 0 var/exploding = 0 + //Drones aren't affected by atmos. min_oxy = 0 + max_oxy = 0 + min_tox = 0 max_tox = 0 + min_co2 = 0 max_co2 = 0 + min_n2 = 0 + max_n2 = 0 minbodytemp = 0 - maxbodytemp = 600 var/has_loot = 1 faction = "malf_drone"