Prevents scooping everyone

Only small species can be dragscooped
This commit is contained in:
Arokha Sieyes
2016-05-14 22:45:23 -04:00
parent ece408d5a8
commit ddc37a1b82
+1 -1
View File
@@ -97,7 +97,7 @@ 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 && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP))
if(holder_type && issmall(src) && istype(H) && !H.lying && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP)) //VOREStation Edit
if(!issmall(H) || !istype(src, /mob/living/carbon/human))
get_scooped(H, (usr == src))
return