Removes unnecessary and cruft procs from mob/inventory.dm

This commit is contained in:
mwerezak
2015-03-30 05:25:43 -04:00
parent e6d19faeba
commit 1b4e13aabc
24 changed files with 70 additions and 235 deletions

View File

@@ -67,7 +67,7 @@
for(var/obj/item/O in src.contents)
total_stored += O.w_class
if(total_stored + W.w_class <= max_combined_w_class)
user.drop_item(W)
user.remove_from_mob(W)
W.loc = src
user << "You shove [W] into the hopper."
else

View File

@@ -80,7 +80,7 @@
var/mob/living/M = loc
if(M == T) return
if(!istype(M)) return
if(src != M.equipped())
if(src != M.get_active_hand())
stop_aim()
return