Skip to content

Commit

Permalink
fix live mobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Legendaxe committed Oct 16, 2023
1 parent 15c929f commit 7b99269
Showing 1 changed file with 5 additions and 6 deletions.
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

0 comments on commit 7b99269

Please sign in to comment.