Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: live mobs #457

Merged
merged 2 commits into from
Oct 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions modular_ss220/credits/code/SScredits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,10 @@ SUBSYSTEM_DEF(credits)
continue
if(!human.last_known_ckey)
continue
if(!human.client?.holder)
continue
if(human.client.holder.rank == "Банда")
streamers += "<center>[human.real_name]([human.ckey]) в роли [human.job]<br><center>"
continue
if(human.client?.holder)
if(human.client.holder.rank == "Банда")
streamers += "<center>[human.real_name]([human.ckey]) в роли [human.job]<br><center>"
continue
if(!length(cast) && !chunksize)
chunk += "В съемках участвовали:"
chunk += "[human.real_name] в роли [uppertext(human.job)]"
Expand All @@ -113,7 +112,7 @@ SUBSYSTEM_DEF(credits)
corpses += human.real_name

if(length(corpses))
titles += "<center>Основано на реальных событиях<br>В память о [english_list(corpses)].</center>"
titles += "<center>Основано на реальных событиях:<br>В память о [english_list(corpses)].</center><br>"

var/list/staff = list("Съемочная группа:")
var/list/staffjobs = file2list("config/credits/jobs/staffjobs.txt")
Expand Down
Loading