Skip to content

Commit

Permalink
include current map in redis publish
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob authored Jan 6, 2024
1 parent 1b38404 commit a0d3e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/jobs/role_authority.dm
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
var/datum/job/PJ = temp_roles_for_mode[JOB_PREDATOR]
if(istype(PJ))
PJ.set_spawn_positions(GLOB.players_preassigned)
REDIS_PUBLISH("byond.round", "type" = "predator-round")
REDIS_PUBLISH("byond.round", "type" = "predator-round", "map" = SSmapping.configs[GROUND_MAP].map_name)

// Assign the roles, this time for real, respecting limits we have established.
var/list/roles_left = assign_roles(temp_roles_for_mode, unassigned_players)
Expand Down

0 comments on commit a0d3e7e

Please sign in to comment.