mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
Recovered Crew | Medical+Cargo Respawns (#87072)
Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: _0Steven <42909981+00-Steven@users.noreply.github.com> Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
This commit is contained in:
co-authored by
MrMelbert
_0Steven
SmArtKar
parent
95cc258845
commit
d170a410d4
@@ -261,7 +261,7 @@
|
||||
candidates -= player
|
||||
else if(is_centcom_level(player.z))
|
||||
candidates -= player // We don't autotator people in CentCom
|
||||
else if(player.mind && (player.mind.special_role || player.mind.antag_datums?.len > 0))
|
||||
else if(player.mind && (player.mind.special_role || player.mind.can_roll_midround()))
|
||||
candidates -= player // We don't autotator people with roles already
|
||||
|
||||
/datum/dynamic_ruleset/midround/from_living/autotraitor/execute()
|
||||
@@ -310,7 +310,7 @@
|
||||
continue
|
||||
if(isnull(player.mind))
|
||||
continue
|
||||
if(player.mind.special_role || length(player.mind.antag_datums))
|
||||
if(player.mind.special_role || player.mind.can_roll_midround())
|
||||
continue
|
||||
candidates += player
|
||||
|
||||
@@ -479,7 +479,7 @@
|
||||
candidates -= player
|
||||
continue
|
||||
|
||||
if(player.mind && (player.mind.special_role || length(player.mind.antag_datums) > 0))
|
||||
if(player.mind && (player.mind.special_role || player.mind.can_roll_midround()))
|
||||
candidates -= player
|
||||
|
||||
/datum/dynamic_ruleset/midround/from_living/blob_infection/execute()
|
||||
|
||||
Reference in New Issue
Block a user