Skip to content

Commit

Permalink
Brainwashed, abductee, etc no longer prevent midround rolls (#2345)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy authored Jun 21, 2024
1 parent 2430931 commit 9d63001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/modules/antagonists/abductor/abductee/abductee.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
roundend_category = "abductees"
antagpanel_category = ANTAG_GROUP_ABDUCTORS
antag_hud_name = "abductee"
count_against_dynamic_roll_chance = FALSE // monkestation edit

/datum/antagonist/abductee/on_gain()
give_objective()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ SUBSYSTEM_DEF(gamemode)
if(no_antags && !isnull(candidate.mind.antag_datums))
var/real = FALSE
for(var/datum/antagonist/antag_datum as anything in candidate.mind.antag_datums)
if(!(antag_datum.antag_flags & FLAG_FAKE_ANTAG))
if(antag_datum.count_against_dynamic_roll_chance && !(antag_datum.antag_flags & FLAG_FAKE_ANTAG))
real = TRUE
break
if(real)
Expand Down

0 comments on commit 9d63001

Please sign in to comment.