From fecbdc71e33f8bb88e7fcfc50773c7eaa36beb96 Mon Sep 17 00:00:00 2001 From: fernerr <35879136+fernerr@users.noreply.github.com> Date: Mon, 17 Feb 2020 16:46:34 +0100 Subject: [PATCH] Tweaks the station's contact levels (#8291) This makes it so announcements can be heard if you're on the roof, like at telecomms, the running track, the checkpoint tower. --- html/changelogs/Ferner-200216-coding_contactlevels.yml | 4 ++++ maps/aurora/code/aurora.dm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/Ferner-200216-coding_contactlevels.yml diff --git a/html/changelogs/Ferner-200216-coding_contactlevels.yml b/html/changelogs/Ferner-200216-coding_contactlevels.yml new file mode 100644 index 00000000000..634f21d9ab5 --- /dev/null +++ b/html/changelogs/Ferner-200216-coding_contactlevels.yml @@ -0,0 +1,4 @@ +author: Ferner +delete-after: True +changes: + - tweak: "Announcements can now be heard on the roof (z-level 7)." diff --git a/maps/aurora/code/aurora.dm b/maps/aurora/code/aurora.dm index da42642a212..fc6617fd3d4 100644 --- a/maps/aurora/code/aurora.dm +++ b/maps/aurora/code/aurora.dm @@ -7,7 +7,7 @@ station_levels = list(2, 3, 4, 5, 6, 7) admin_levels = list(1) - contact_levels = list(3, 4, 5, 6) + contact_levels = list(3, 4, 5, 6, 7) player_levels = list(2, 3, 4, 5, 6, 7, 8) restricted_levels = list() accessible_z_levels = list("8" = 10, "7" = 15, "2" = 60)