From ed6c3852bd3a1e965f3824fb410c53ecc2f1257f Mon Sep 17 00:00:00 2001 From: WickedCybs <52309324+WickedCybs@users.noreply.github.com> Date: Tue, 6 Jul 2021 19:29:52 -0600 Subject: [PATCH] Icarus Combat Drones Now Illuminate Their Surroundings to a Small Extent (#12131) --- .../mob/living/simple_animal/hostile/icarus_drone.dm | 3 +++ html/changelogs/wickedcybs_dronelight.yml | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 html/changelogs/wickedcybs_dronelight.yml diff --git a/code/modules/mob/living/simple_animal/hostile/icarus_drone.dm b/code/modules/mob/living/simple_animal/hostile/icarus_drone.dm index 14b0abfa6ef..c29dd613f31 100644 --- a/code/modules/mob/living/simple_animal/hostile/icarus_drone.dm +++ b/code/modules/mob/living/simple_animal/hostile/icarus_drone.dm @@ -60,6 +60,9 @@ /mob/living/simple_animal/hostile/icarus_drone/Initialize() . = ..() + + set_light(1.2, 3, LIGHT_COLOR_BLUE) + if(prob(5)) projectiletype = /obj/item/projectile/beam/pulse/drone projectilesound = 'sound/weapons/pulse2.ogg' diff --git a/html/changelogs/wickedcybs_dronelight.yml b/html/changelogs/wickedcybs_dronelight.yml new file mode 100644 index 00000000000..ab830c47725 --- /dev/null +++ b/html/changelogs/wickedcybs_dronelight.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - tweak: "Icarus drones now illuminate their surroundings to a small extent." \ No newline at end of file