Skip to content

Commit

Permalink
ggh
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasint committed Sep 22, 2024
1 parent 33d656e commit fd3508a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions monkestation/code/modules/and_roll_credits/_credits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
for(var/I in credit_order_for_this_round)
if(!credits)
return
if(istype(I, /obj/effect/title_card_object)) //huge image sleep
sleep(CREDIT_SPAWN_SPEED * 3.3)
count = 0
_credits += new /atom/movable/screen/credit(null, I, src)
if(istype(I, /atom/movable/screen/map_view/char_preview))
count++
if(count >= 8)
Expand All @@ -79,10 +83,6 @@
if(!istype(I, /atom/movable/screen/map_view/char_preview))
sleep(CREDIT_SPAWN_SPEED)
count = 0
if(istype(I, /obj/effect/title_card_object)) //huge image sleep
sleep(CREDIT_SPAWN_SPEED * 3.3)
count = 0
_credits += new /atom/movable/screen/credit(null, I, src)
sleep(CREDIT_ROLL_SPEED - CREDIT_SPAWN_SPEED)
remove_verb(src, /client/proc/ClearCredits)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ SUBSYSTEM_DEF(credits)
appereance.update_body()
appereance.maptext_width = 120
appereance.maptext_y = -8
appereance.maptext_x = 60
appereance.maptext_x = -60
appereance.maptext = "<center>[ckey]</center>"
contributer_pref_images += appereance

Expand All @@ -72,7 +72,7 @@ SUBSYSTEM_DEF(credits)
var/atom/movable/screen/map_view/char_preview/appereance = new(null, mocked)
appereance.update_body()
appereance.maptext_width = 120
appereance.maptext_x = 60
appereance.maptext_x = -60
appereance.maptext_y = -8
appereance.maptext = "<center>[ckey]</center>"
admin_pref_images += appereance
Expand Down Expand Up @@ -217,7 +217,7 @@ SUBSYSTEM_DEF(credits)
appereance.appearance = preview.appearance
appereance.maptext_width = 120
appereance.maptext_y = -8
appereance.maptext_x = 60
appereance.maptext_x = -60
appereance.maptext = "<center>[client.mob.real_name]</center>"
created_appearances += appereance
return created_appearances
Expand Down

0 comments on commit fd3508a

Please sign in to comment.