mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-29 11:32:13 +00:00
19 lines
470 B
Plaintext
19 lines
470 B
Plaintext
// For mappers to make invisible borders. For best results, place at least 8 tiles away from map edge.
|
|
|
|
/obj/effect/blocker
|
|
desc = "You can't go there!"
|
|
icon = 'icons/turf/wall_masks.dmi'
|
|
icon_state = "rdebug"
|
|
anchored = 1.0
|
|
opacity = 0
|
|
density = 1
|
|
unacidable = 1
|
|
|
|
/obj/effect/blocker/New()
|
|
icon = null // Make it disappear.
|
|
icon_state = null // Probably not nessicary.
|
|
|
|
/obj/effect/blocker/initialize() // For non-gateway maps.
|
|
icon = null
|
|
icon_state = null
|