Merge pull request #7469 from Citadel-Station-13/kevinz000-patch-8
buffs headrev scaling
This commit is contained in:
@@ -66,7 +66,7 @@
|
||||
/datum/game_mode/revolution/post_setup()
|
||||
var/list/heads = SSjob.get_living_heads()
|
||||
var/list/sec = SSjob.get_living_sec()
|
||||
var/weighted_score = min(max(round(heads.len - ((8 - sec.len) / 3)),1),max_headrevs)
|
||||
var/weighted_score = CLAMP(round(heads.len - ((3 - sec.len) / 3)), 1, max_headrevs)
|
||||
|
||||
for(var/datum/mind/rev_mind in headrev_candidates) //People with return to lobby may still be in the lobby. Let's pick someone else in that case.
|
||||
if(isnewplayer(rev_mind.current))
|
||||
|
||||
Reference in New Issue
Block a user