Skip to content

Commit dcb726a

Browse files
committed
initial commit
1 parent 7902e5e commit dcb726a

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

code/__DEFINES/misc.dm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,8 @@ example:
451451
#define TEMPLATE_FLAG_PORT_SPAWN BITFLAG(5)
452452

453453
//Ruin map template flags
454-
/// Ruin is not available during spawning unless another ruin permits it, or whitelisted by the exoplanet
454+
/// Ruin is not available during spawning unless another ruin permits it, whitelisted by the exoplanet or tied to an external subsystem like Odyssey gamemode.
455+
/// This should also be added to Odssey maps.
455456
#define TEMPLATE_FLAG_RUIN_STARTS_DISALLOWED BITFLAG(6)
456457

457458
#define LANDING_ZONE_RADIUS 15 // Used for autoplacing landmarks on exoplanets

maps/away/scenarios/cryo_outpost/cryo_outpost_.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
spawn_weight = 0 // so it does not spawn as ordinary away site
2323
spawn_cost = 1
2424
sectors = list(ALL_POSSIBLE_SECTORS)
25+
template_flags = TEMPLATE_FLAG_RUIN_STARTS_DISALLOWED
2526

2627
unit_test_groups = list(3)
2728

maps/away/scenarios/enviro_testing_facility/enviro_testing_facility.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
spawn_cost = 1
2222
spawn_weight = 0 // so it does not spawn as ordinary away site
2323
sectors = list(ALL_POSSIBLE_SECTORS)
24+
template_flags = TEMPLATE_FLAG_RUIN_STARTS_DISALLOWED
2425
unit_test_groups = list(1)
2526

2627
/singleton/submap_archetype/enviro_testing_facility

maps/away/scenarios/nuclear_silo/nuclear_silo_.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
)
1515

1616
sectors = list(ALL_POSSIBLE_SECTORS)
17+
template_flags = TEMPLATE_FLAG_RUIN_STARTS_DISALLOWED
1718
spawn_weight = 0
1819
spawn_cost = 1
1920
id = "nuclear_silo"

maps/away/scenarios/ruined_propellant_depot/ruined_propellant_depot_.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
spawn_cost = 1
1010
spawn_weight = 0 // so it does not spawn as ordinary away site
1111
sectors = list(ALL_POSSIBLE_SECTORS)
12+
template_flags = TEMPLATE_FLAG_RUIN_STARTS_DISALLOWED
1213
unit_test_groups = list(1)
1314

1415
/singleton/submap_archetype/ruined_propellant_depot

0 commit comments

Comments
 (0)