Fixes people getting shoved into the overmap zlevel when falling out of the ship. (#16383)

* Fixes people being shoved to the overmap zlevel.

* c

---------

Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
Matt Atlas
2023-05-22 14:04:46 +00:00
committed by GitHub
co-authored by Matt Atlas
parent 27d561b17d
commit bdefb3d2f6
5 changed files with 44 additions and 6 deletions
+41
View File
@@ -0,0 +1,41 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
# balance
# admin
# backend
# security
# refactor
#################################
# Your name.
author: MattAtlas
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- bugfix: "People no longer get shoved into the overmap zlevel when falling out of space."
-1
View File
@@ -11,7 +11,6 @@
var/list/sealed_levels = list() // Z-levels that don't allow random transit at edge
var/list/restricted_levels = list() // Z-levels that dont allow ghosts to randomly move around
var/list/empty_levels = null // Empty Z-levels that may be used for various things (currently used by bluespace jump)
var/list/meteor_levels = list() //What z-levels the meteors can hit
var/list/map_levels // Z-levels available to various consoles, such as the crew monitor. Defaults to station_levels if unset.
-1
View File
@@ -16,7 +16,6 @@
player_levels = list(2, 3, 4, 5, 6, 7, 8)
restricted_levels = list()
accessible_z_levels = list("2" = 60, "6" = 20, "7" = 20)
meteor_levels = list(6)
base_turf_by_z = list(
"1" = /turf/space,
"2" = /turf/space,
-1
View File
@@ -13,7 +13,6 @@
contact_levels = list(1, 2, 3)
player_levels = list(1, 2, 3)
accessible_z_levels = list(1, 2, 3)
meteor_levels = list(1, 2, 3)
overmap_event_areas = 10
+3 -3
View File
@@ -9,10 +9,10 @@
station_levels = list(1, 2, 3)
admin_levels = list(4)
contact_levels = list(1, 2, 3)
player_levels = list(1, 2, 3, 5, 6)
player_levels = list(1, 2, 3, 5)
restricted_levels = list()
accessible_z_levels = list(1, 2, 3)
empty_levels = list(6)
accessible_z_levels = list("1" = 5, "2" = 5, "3" = 5, "5" = 75)
empty_levels = list(5)
base_turf_by_z = list(
"1" = /turf/space,
"2" = /turf/space,