Merge pull request #2714 from Verkister/forbiddentaurs

Enables 2 compatibility lacking fluff taur types.
This commit is contained in:
Arokha Sieyes
2018-01-13 23:41:34 -05:00
committed by GitHub
4 changed files with 19 additions and 3 deletions
@@ -80,6 +80,20 @@
else
slowdown = initial(slowdown)
return 1
if(istype(H) && istype(TT, /datum/sprite_accessory/tail/taur/drake))
item_state = "[icon_base]_Drake"
if(H.size_multiplier >= RESIZE_BIG) //Are they a macro?
slowdown = 0
else
slowdown = initial(slowdown)
return 1
if(istype(H) && istype(TT, /datum/sprite_accessory/tail/taur/otie))
item_state = "[icon_base]_Otie"
if(H.size_multiplier >= RESIZE_BIG) //Are they a macro?
slowdown = 0
else
slowdown = initial(slowdown)
return 1
else
H << "<span class='warning'>[no_message]</span>"
return 0