Corrects several Teshari code and icon issues. Makes Teshari suits available in the cycler.

This commit is contained in:
Zuhayr
2016-02-13 14:35:38 +10:30
parent bd5507bcc8
commit 51842ce8fa
5 changed files with 5 additions and 10 deletions
+3 -2
View File
@@ -98,8 +98,9 @@ var/list/holder_mob_icon_cache = list()
/mob/living/MouseDrop(var/atom/over_object)
var/mob/living/carbon/human/H = over_object
if(holder_type && istype(H) && !H.lying && !issmall(H) && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP))
get_scooped(H, (usr == src))
if(holder_type && istype(H) && !H.lying && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP))
if(!issmall(H) || !istype(src, /mob/living/carbon/human))
get_scooped(H, (usr == src))
return
return ..()