mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-15 20:02:16 +00:00
* part 1 * compiles? * IT WORKS * vis contents * fixes * umbrelloid * umbrella 2 * dsasdd * stuff * lmao --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
22 lines
507 B
Plaintext
22 lines
507 B
Plaintext
/obj/abstract
|
|
name = ""
|
|
icon = 'icons/effects/landmarks.dmi'
|
|
icon_state = "x2"
|
|
simulated = FALSE
|
|
density = FALSE
|
|
anchored = TRUE
|
|
abstract_type = /obj/abstract
|
|
invisibility = INVISIBILITY_ABSTRACT
|
|
|
|
/obj/abstract/Initialize()
|
|
. = ..()
|
|
verbs.Cut()
|
|
//Let mappers see the damn thing by just making them invisible here
|
|
opacity = FALSE
|
|
alpha = 0
|
|
mouse_opacity = MOUSE_OPACITY_TRANSPARENT
|
|
|
|
/obj/abstract/ex_act()
|
|
SHOULD_CALL_PARENT(FALSE)
|
|
return
|