Skip to content

Commit

Permalink
rock shutter
Browse files Browse the repository at this point in the history
  • Loading branch information
meemofcourse committed Feb 10, 2024
1 parent b9f3aa9 commit 16b63c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 1 addition & 7 deletions _maps/outpost/indie_space.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -5821,12 +5821,6 @@
/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
"Ki" = (
/obj/machinery/door/poddoor/shutters/indestructible{
dir = 4
},
/turf/closed/indestructible/rock,
/area/outpost/external)
"Kl" = (
/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/structure/cable/yellow{
Expand Down Expand Up @@ -19338,7 +19332,7 @@ mC
mC
HD
HD
Ki
HD
HD
mC
mC
Expand Down
4 changes: 3 additions & 1 deletion code/modules/admin/verbs/randomverbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
return

if (!sender)
sender = input("Who is the message from?", "Sender") as null|anything in list(RADIO_CHANNEL_CENTCOM, RADIO_CHANNEL_SYNDICATE, RADIO_CHANNEL_SOLGOV, RADIO_CHANNEL_INTEQ, RADIO_CHANNEL_MINUTEMEN) //WS Edit - SolGov Rep
sender = input("Who is the message from?", "Sender") as null|anything in list(RADIO_CHANNEL_CENTCOM, RADIO_CHANNEL_SYNDICATE, RADIO_CHANNEL_SOLGOV, RADIO_CHANNEL_INTEQ, RADIO_CHANNEL_MINUTEMEN, "Outpost") //WS Edit - SolGov Rep
if(!sender)
return
switch(sender)
Expand All @@ -75,6 +75,8 @@
sender = input("From what division?", "Minutemen") as null|anything in list("Colonial Minutemen Headquarters", "The Galactic Optium Labor Divison", "The Biohazard Assesment and Removal Division")
if (RADIO_CHANNEL_INTEQ)
sender = "Inteq Risk Management"
if ("Outpost")
sender = "Outpost Authority"
if(!sender)
return
message_admins("[key_name_admin(src)] has started answering [key_name_admin(H)]'s [sender] request.")
Expand Down

0 comments on commit 16b63c3

Please sign in to comment.