Files
Aurora.3/code/_helpers/items.dm
NanakoAC da63b8d171 Gripper overhaul + New borg sprites (#1518)
Fixes #1489 
Fixes #1499 

Grippers basically torn up and remade, i went down to the root and incorporated them into cyborg click and inventory code. This should make them resistant against future bugs.
Fixes all current known gripper bugs. Grippers work properly with all the stuff they should. Minor tweaks to borg modules.

In addition, i went and raided VG, TG, paradise and bay repositories, and ported all their best sprites that were suitable for us. VG station was the most lucrative by far, about 70% of the new ones came from there.
2017-01-13 00:07:18 +02:00

10 lines
201 B
Plaintext

//Prevents robots dropping their modules.
/proc/dropsafety(var/atom/movable/A)
if (istype(A.loc, /mob/living/silicon))
return 0
else if (istype(A.loc, /obj/item/rig_module))
return 0
return 1