[MIRROR] Dynamic 2022, Part 1 - Redesigning midround rolls (Midrounds happen far more frequently now, and scale their power over time) [MDB IGNORE] (#13718)

* Dynamic 2022, Part 1 - Redesigning midround rolls (Midrounds happen far more frequently now, and scale their power over time)

* Update dynamic_rulesets_midround.dm

* wew

Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com>
Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-05-23 16:06:51 +01:00
committed by GitHub
co-authored by Mothblocks Zonespace Gandalf
parent 1bc520d5a8
commit ea6f252e81
27 changed files with 286 additions and 209 deletions
+8 -1
View File
@@ -126,7 +126,14 @@
/mob/proc/add_to_current_living_antags()
if(!SSticker?.mode)
return
GLOB.current_living_antags |= src
if (length(mind.antag_datums) == 0)
return
for (var/datum/antagonist/antagonist in mind.antag_datums)
if (antagonist.count_against_dynamic_roll_chance)
GLOB.current_living_antags |= src
return
///Removes the mob reference from the list of living antag player-mobs.
/mob/proc/remove_from_current_living_antags()