Skip to content

Commit

Permalink
Fixes victory not working
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerfulBacon committed Apr 8, 2024
1 parent 39f0752 commit 042cc03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ NAMED_TUPLE_1(directive_special_action, var, action_name)
SHOULD_NOT_OVERRIDE(TRUE)
PROTECTED_PROC(TRUE)
RETURN_TYPE(/datum/directive_team)
var/created = new /datum/directive_team(uplinks, islist(data) ? data : list())
var/created = new /datum/directive_team(islist(uplinks) ? uplinks : list(uplinks), islist(data) ? data : list())
teams += created
return created

Expand Down

0 comments on commit 042cc03

Please sign in to comment.