mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
Light Step (#10664)
Added LIGHTSTEP to the syndi no-slip shoes. This prevents you from activating mouse traps and landmines while wearing them, as well as letting you dodge past soap, banana peels, and oil spills.
This commit is contained in:
@@ -85,7 +85,12 @@
|
||||
if(armed)
|
||||
if(israt(AM))
|
||||
triggered(AM)
|
||||
else if(istype(AM, /mob/living))
|
||||
else if(ishuman(AM))
|
||||
var/mob/living/carbon/human/H = AM
|
||||
if(!(H.shoes?.item_flags & LIGHTSTEP))
|
||||
triggered(H)
|
||||
H.visible_message(SPAN_WARNING("\The [H] accidentally steps on \the [src]."), SPAN_WARNING("You accidentally step on \the [src]."))
|
||||
else if(isliving(AM))
|
||||
var/mob/living/L = AM
|
||||
triggered(L)
|
||||
L.visible_message(SPAN_WARNING("\The [L] accidentally steps on \the [src]."), SPAN_WARNING("You accidentally step on \the [src]."))
|
||||
|
||||
Reference in New Issue
Block a user