mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
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.
10 lines
201 B
Plaintext
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
|
|
|