From af983ebad39adf295ed56b045a0452baafc3d191 Mon Sep 17 00:00:00 2001 From: Geeves Date: Sun, 29 Dec 2019 00:42:05 +0200 Subject: [PATCH] vaurca hair pulling fix (#7843) --- code/game/machinery/machinery.dm | 8 ++++---- html/changelogs/geeves - vaurcahair.yml | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 html/changelogs/geeves - vaurcahair.yml diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 82717d43104..b1de271cc39 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -424,10 +424,10 @@ Class Procs: if(!ishuman(H)) return - if(isskrell(H)) //for whatever reason, skrell's tentacles have a really long length - return - - if(isunathi(H)) //horns would not get caught in the machine + //for whatever reason, skrell's tentacles have a really long length + //horns would not get caught in the machine + //vaurca have fine control of their antennae + if(isskrell(H) || isunathi(H) || isvaurca(H)) return var/datum/sprite_accessory/hair/hair_style = hair_styles_list[H.h_style] diff --git a/html/changelogs/geeves - vaurcahair.yml b/html/changelogs/geeves - vaurcahair.yml new file mode 100644 index 00000000000..2b8bce130a2 --- /dev/null +++ b/html/changelogs/geeves - vaurcahair.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Vaurca antennae no longer get pulled by machinery." \ No newline at end of file