diff --git a/code/modules/clothing/spacesuits/void/void_vr.dm b/code/modules/clothing/spacesuits/void/void_vr.dm
index 07fd2b88d0..a7675f748a 100644
--- a/code/modules/clothing/spacesuits/void/void_vr.dm
+++ b/code/modules/clothing/spacesuits/void/void_vr.dm
@@ -78,7 +78,7 @@
/obj/item/clothing/suit/space/void/merc/taur
name = "taur specific blood-red voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null //Species restricted since all it cares about is a taur half
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -97,12 +97,12 @@
pixel_x = -16
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/medical/taur
name = "taur specific medical voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -124,13 +124,13 @@
pixel_x = -16
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/engineering/taur
name = "taur specific engineering voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -152,13 +152,13 @@
pixel_x = -16
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/security/taur
name = "taur specific security voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -183,12 +183,12 @@
update_icon()
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/atmos/taur
name = "taur specific atmospherics voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -213,12 +213,12 @@
update_icon()
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/mining/taur
name = "taur specific mining voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -243,13 +243,13 @@
update_icon()
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
/obj/item/clothing/suit/space/void/merc/taur
name = "taur specific blood-red voidsuit"
- desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it."
+ desc = "A high-tech space suit. It says has a sticker saying one size fits all taurs on it. Below the sticker,it states that it only fits horses, wolves, and naga taurs."
species_restricted = null
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/horse))
@@ -274,5 +274,5 @@
update_icon()
return 1
else
- H << "You need to have a taur half to wear this."
+ H << "You need to have a horse, wolf, or naga half to wear this."
return 0
\ No newline at end of file