mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 11:05:03 +01:00
Adds wikipage to zombie antag datum + minor fix (#25712)
* Adds wikipage to zombie antag datum + minor fix * oops * okay send it
This commit is contained in:
@@ -470,6 +470,12 @@
|
||||
if(length(SSticker.mode.eventmiscs))
|
||||
dat += check_role_table("Event Roles", SSticker.mode.eventmiscs)
|
||||
|
||||
if(length(SSticker.mode.zombies))
|
||||
dat += check_role_table("Zombies", SSticker.mode.zombies)
|
||||
|
||||
if(length(SSticker.mode.zombie_infected))
|
||||
dat += check_role_table_mob("Pre-zombie infected", SSticker.mode.zombie_infected)
|
||||
|
||||
if(length(GLOB.ts_spiderlist))
|
||||
var/list/spider_minds = list()
|
||||
for(var/mob/living/simple_animal/hostile/poison/terror_spider/S in GLOB.ts_spiderlist)
|
||||
@@ -529,3 +535,10 @@
|
||||
|
||||
txt += "</tr>"
|
||||
return txt
|
||||
|
||||
/datum/admins/proc/check_role_table_mob(name, list/members, show_objectives=1)
|
||||
var/txt = "<br><table cellspacing=5><tr><td><b>[name]</b></td><td></td></tr>"
|
||||
for(var/mob/M in members)
|
||||
txt += check_role_table_row(M, show_objectives)
|
||||
txt += "</table>"
|
||||
return txt
|
||||
|
||||
Reference in New Issue
Block a user