mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-10 23:47:08 +01:00
Assunzione & Port Volturno (#22258)
Contains assets, code, maps, etc. for Assunzione and Port Volturno. This is something like v0.9 for live unit testing, etc. Do not merge yet. ### Asset Licenses The following assets that **have not** been created by myself are included in this PR: | Path | Original Author | License | | --- | --- | --- | | icons/obj/structure/urban/arches.dmi | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/assunzione_neon.dmi | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/assunzione_signs.dmi (stafylia_sign) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/billboard.dmi (sign_assunzione1 & 2) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/poles.dmi (radial_floodlight) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/restaurant.dmi (menu_gyro) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/statues.dmi (aec_small) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/pottedplants_big.dmi (luce-vine-plant) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/pottedplants_small.dmi (luce-vine-plant) | [Fyni](https://github.com/Fyniiy) | CC-BY-SA | | icons/obj/structure/urban/billboard.dmi (sign_assunzione3) | Minzeyes | CC-BY-SA | | icons/obj/structure/urban/assunzione_96x110.dmi | Minzeyes | CC-BY-SA | | icons/turf/smooth/composite_brick.dmi | [nauticall](https://github.com/nauticall) | CC-BY-SA | --------- Signed-off-by: Batrachophreno <Batrochophreno@gmail.com> Co-authored-by: Kano <89972582+kano-dot@users.noreply.github.com>
This commit is contained in:
@@ -6,21 +6,24 @@ SUBSYSTEM_DEF(atlas)
|
||||
init_order = INIT_ORDER_MAPPING
|
||||
init_stage = INITSTAGE_EARLY
|
||||
|
||||
// Whatever map is currently loaded. Null until SSatlas Initialize() starts.
|
||||
/// Whatever map is currently loaded. Null until SSatlas Initialize() starts.
|
||||
var/datum/map/current_map
|
||||
|
||||
var/list/known_maps = list()
|
||||
var/dmm_suite/maploader
|
||||
|
||||
var/list/mapload_callbacks = list()
|
||||
var/map_override // If set, SSatlas will forcibly load this map. If the map does not exist, mapload will fail and SSatlas will panic.
|
||||
/// If set, SSatlas will forcibly load this map. If the map does not exist, mapload will fail and SSatlas will panic.
|
||||
var/map_override
|
||||
var/list/spawn_locations = list()
|
||||
|
||||
var/datum/space_sector/current_sector
|
||||
var/list/possible_sectors = list()
|
||||
|
||||
//Note that the dirs here are REVERSE because they're used for entry points, so it'd be the dir facing starboard for example.
|
||||
//These are strings because otherwise the list indexes would be out of bounds. Thanks BYOND.
|
||||
/**
|
||||
* Note that the dirs here are REVERSE because they're used for entry points, so it'd be the dir facing starboard for example.
|
||||
* These are strings because otherwise the list indexes would be out of bounds. Thanks BYOND.
|
||||
*/
|
||||
var/list/naval_to_dir = list(
|
||||
"1" = list(
|
||||
"starboard" = WEST,
|
||||
|
||||
Reference in New Issue
Block a user