mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
[MIRROR] Ashwalkers team stores players_spawned via ckeys rather than keys now [MDB IGNORE] (#24071)
* Ashwalkers team stores players_spawned via ckeys rather than keys now * Update mining_roles.dm --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
@@ -236,7 +236,7 @@
|
||||
return ..()
|
||||
|
||||
/obj/effect/mob_spawn/ghost_role/human/ash_walker/allow_spawn(mob/user, silent = FALSE)
|
||||
if(!(user.ckey in team.players_spawned))//one per person unless you get a bonus spawn SKYRAT EDIT: Original: if(!(user.key in team.players_spawned))
|
||||
if(!(user.ckey in team.players_spawned))//one per person unless you get a bonus spawn
|
||||
return TRUE
|
||||
if(!silent)
|
||||
to_chat(user, span_warning("You have exhausted your usefulness to the Necropolis."))
|
||||
@@ -254,7 +254,7 @@
|
||||
spawned_human.mind.add_antag_datum(/datum/antagonist/ashwalker, team)
|
||||
|
||||
spawned_human.remove_language(/datum/language/common)
|
||||
team.players_spawned += (spawned_human.ckey) //SKYRAT EDIT: Original: team.players_spawned += (spawned_human.key)
|
||||
team.players_spawned += (spawned_human.ckey)
|
||||
eggshell.egg = null
|
||||
QDEL_NULL(eggshell)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user