mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 15:17:01 +01:00
Latejoiners can no longer be antagonists if:
[Number of antagonists] >= [Number of Players Joined] / [Scaling coefficient] + 1
This commit is contained in:
@@ -1053,7 +1053,7 @@ var/global/list/g_fancy_list_of_safe_types = null
|
||||
set name = "Debug Mob Lists"
|
||||
set desc = "For when you just gotta know"
|
||||
|
||||
switch(input("Which list?") in list("Players","Admins","Mobs","Living Mobs","Dead Mobs", "Clients"))
|
||||
switch(input("Which list?") in list("Players","Admins","Mobs","Living Mobs","Dead Mobs","Clients","Joined Clients"))
|
||||
if("Players")
|
||||
usr << dd_list2text(player_list,",")
|
||||
if("Admins")
|
||||
@@ -1066,3 +1066,5 @@ var/global/list/g_fancy_list_of_safe_types = null
|
||||
usr << dd_list2text(dead_mob_list,",")
|
||||
if("Clients")
|
||||
usr << dd_list2text(clients,",")
|
||||
if("Joined Clients")
|
||||
usr << dd_list2text(joined_player_list,",")
|
||||
@@ -265,6 +265,8 @@
|
||||
else
|
||||
character.Robotize()
|
||||
|
||||
joined_player_list += character.ckey
|
||||
|
||||
if(config.allow_latejoin_antagonists && emergency_shuttle.timeleft() > 300) //Don't make them antags if the station is evacuating
|
||||
ticker.mode.make_antag_chance(character)
|
||||
del(src)
|
||||
|
||||
Reference in New Issue
Block a user