Skip to content

Commit

Permalink
starts mission
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Jan 19, 2025
1 parent e4e06ef commit dd0b29f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/unit_tests/ruin_placement.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

var/dynamic_missions = list()
for(var/datum/mission/ruin/mission_type in ruin.dynamic_mission_types)
dynamic_missions += new mission_type(src, 1 + length(dynamic_missions))
var/datum/mission/ruin/new_mission = new mission_type(src, 1 + length(dynamic_missions))
dynamic_missions += new_mission
new_mission.start_mission()

ruin.load(vlevel.get_unreserved_bottom_left_turf())

Expand Down

0 comments on commit dd0b29f

Please sign in to comment.