Changes a bunch of New()s to Initialize()s (#61626)

This commit is contained in:
Jordan Brown
2021-09-26 00:15:49 -07:00
committed by GitHub
parent 79b8047cd6
commit ccb75a554f
23 changed files with 64 additions and 60 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ INITIALIZE_IMMEDIATE(/mob/dead)
var/client/C = client
to_chat(C, span_notice("Sending you to [pick]."))
new /atom/movable/screen/splash(C)
new /atom/movable/screen/splash(null, C)
notransform = TRUE
sleep(29) //let the animation play
@@ -18,7 +18,7 @@
/mob/dead/new_player/Initialize(mapload)
if(client && SSticker.state == GAME_STATE_STARTUP)
var/atom/movable/screen/splash/S = new(client, TRUE, TRUE)
var/atom/movable/screen/splash/S = new(null, client, TRUE, TRUE)
S.Fade(TRUE)
if(length(GLOB.newplayer_start))