mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
/obj/effect/wire_deleter
|
|
name = "wire deleter"
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x2"
|
|
anchored = TRUE
|
|
unacidable = TRUE
|
|
simulated = FALSE
|
|
invisibility = 100
|
|
|
|
/obj/effect/wire_deleter/Initialize(mapload)
|
|
. = ..()
|
|
|
|
for(var/c in loc.contents)
|
|
if(istype(c, /obj/structure/cable))
|
|
if(prob(33))
|
|
qdel(c)
|
|
qdel(src) |