From 7b6ac1391f5a8eea0bfbfa7e6f3c2dc610f88baa Mon Sep 17 00:00:00 2001 From: Heroman3003 Date: Fri, 16 Feb 2018 07:24:05 +1000 Subject: [PATCH] fix for condition dumb error --- code/modules/vore/resizing/resize_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 795f549c03b..54fc47392ec 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -303,7 +303,7 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 else if(istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse) || istype(H.tail_style, /datum/sprite_accessory/tail/taur/cow)) //this is placeholder till someone gets better idea src << "You pin [tmob] to the ground before scooping them up with your hooves!" tmob << "[src] pins you to the ground before scooping you up with their hooves!" - else if istype(H.tail_style, /datum/sprite_accessory/tail/taur/tents) + else if (istype(H.tail_style, /datum/sprite_accessory/tail/taur/tents)) src << "You slide over [tmob] with your tentacles, smushing them against the ground before wrapping one up around them, trapping them within the tight confines of your tentacles!" tmob << "[src] slides over you with their tentacles, smushing you against the ground before wrapping one up around you, trapping you within the tight confines of their tentacles!" else