From 64ca91a1076167a24b277e689fd7392b36cd6724 Mon Sep 17 00:00:00 2001 From: Doxxmedearly <38594443+Doxxmedearly@users.noreply.github.com> Date: Wed, 26 Aug 2020 04:00:48 -0500 Subject: [PATCH] Drone self-destruct only gibs (#9756) --- code/modules/mob/living/silicon/robot/drone/drone.dm | 3 +++ html/changelogs/doxxmedearly - dronesplode.yml | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 html/changelogs/doxxmedearly - dronesplode.yml diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 8d9724471ad..d31bfb3a647 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -425,6 +425,9 @@ /mob/living/silicon/robot/drone/remove_robot_verbs() src.verbs -= silicon_subsystems +/mob/living/silicon/robot/drone/self_destruct() + gib() + /mob/living/silicon/robot/drone/examine(mob/user) ..() var/msg diff --git a/html/changelogs/doxxmedearly - dronesplode.yml b/html/changelogs/doxxmedearly - dronesplode.yml new file mode 100644 index 00000000000..bf68ca06966 --- /dev/null +++ b/html/changelogs/doxxmedearly - dronesplode.yml @@ -0,0 +1,6 @@ +author: Doxxmedearly + +delete-after: True + +changes: + - tweak: "Drone anti-theft now just gibs them instead of causing a small explosion."