mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
* PLANES * whoops * bugfixes * adds dummy noir obj/screen * I.plane = initial(I.plane) + assorted bugfixes * fixed bugs and did a thing with lasers & tasers * thanks for using a define up there it's really useful and maintainable.
18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
/**
|
|
* Markers and shit used with BYONDTools.
|
|
*
|
|
* Mostly just used in mapping.
|
|
*/
|
|
|
|
/obj/effect/byondtools/changed
|
|
icon='icons/effects/tile_effects.dmi'
|
|
icon_state="changed"
|
|
layer = LIGHTING_LAYER
|
|
alpha = 64
|
|
color = "#ff0000"
|
|
|
|
/obj/effect/byondtools/changed/New()
|
|
layer = TURF_LAYER
|
|
plane = PLANE_TURF
|
|
warning("Some dipshit left a [type] at [x],[y],[z]. Might want to fix that (dmmfix map.dmm)")
|
|
del(src) |