diff --git a/code/defines/obj.dm b/code/defines/obj.dm index 4bacd5e7d9..a193aeb680 100644 --- a/code/defines/obj.dm +++ b/code/defines/obj.dm @@ -20,6 +20,23 @@ anchored = TRUE density = TRUE +/obj/structure/signevent //Designed for scene events for people to put their OOC notes on BEFORE going into a room with them. + name = "sign" + desc = "It's a sign that tells you things!" + icon = 'icons/obj/stationobjs.dmi' + icon_state = "sign_event_green" + anchored = TRUE + density = FALSE + +/obj/structure/signevent/blue + icon_state = "sign_event_blue" + +/obj/structure/signevent/red + icon_state = "sign_event_red" + +/obj/structure/signevent/yellow + icon_state = "sign_event_yellow" + /obj/effect/mark var/mark = "" icon = 'icons/misc/mark.dmi' diff --git a/icons/obj/stationobjs.dmi b/icons/obj/stationobjs.dmi index 34aee83974..52fcf97003 100644 Binary files a/icons/obj/stationobjs.dmi and b/icons/obj/stationobjs.dmi differ