mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
Stops borgs from stripping people (#8838)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/mob/living/carbon/human/proc/handle_strip(var/slot_to_strip, var/mob/living/user)
|
||||
if(!slot_to_strip || !istype(user) || ispAI(user) || (isanimal(user) && !istype(user, /mob/living/simple_animal/hostile) ) )
|
||||
if(!slot_to_strip || !istype(user) || ispAI(user) || (isanimal(user) && !istype(user, /mob/living/simple_animal/hostile) ) || isrobot(user) )
|
||||
return FALSE
|
||||
|
||||
if(user.incapacitated() || !user.Adjacent(src))
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Alberyk
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- tweak: "Cyborgs can't remove items or clothing from human mobs anymore."
|
||||
Reference in New Issue
Block a user