Skip to content

Commit

Permalink
Request those additional objectives!
Browse files Browse the repository at this point in the history
Go get em tigers!!
  • Loading branch information
Bokkiewokkie committed Sep 8, 2023
1 parent 575babf commit 4b42cff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions nsv13/code/controllers/subsystem/overmap_mode.dm
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ SUBSYSTEM_DEF(overmap_mode)
for(var/datum/overmap_objective/O in mode.objectives)
O.ignore_check = TRUE //We no longer care about checking these objective against completeion

/* This doesn't work and I don't have the time to refactor all of it right now so on the TODO pile it goes!
var/list/extension_pool = subtypesof(/datum/overmap_objective)
var/players = get_active_player_count(TRUE, TRUE, FALSE) //Number of living, non-AFK players including non-humanoids
for(var/datum/overmap_objective/O in extension_pool)
Expand All @@ -321,6 +322,12 @@ SUBSYSTEM_DEF(overmap_mode)
else
message_admins("No additional objective candidates! Defaulting to tickets")
mode.objectives += new /datum/overmap_objective/tickets
*/

if(get_active_player_count(TRUE,TRUE,FALSE) > 4)
mode.objective += new /datum/overmap_objective/clear_system/rubicon
else
mode.objectives += new /datum/overmap_objective/tickets

instance_objectives()

Expand Down

0 comments on commit 4b42cff

Please sign in to comment.