[NO GBP] fix server hop lobby art fade-in (#91693)

## About The Pull Request

accidentally broke this in
https://github.com/tgstation/tgstation/pull/91637, whoops

## Why It's Good For The Game

bugfix

## Changelog
🆑
fix: Fixed lobby art not fading in when server hopping.
/🆑
This commit is contained in:
Lucy
2025-06-21 22:32:21 -04:00
committed by Roxy
parent 8c5e5d57df
commit a2f60cf2cb
+1 -1
View File
@@ -76,7 +76,7 @@ INITIALIZE_IMMEDIATE(/mob/dead)
var/client/hopper = client
to_chat(hopper, span_notice("Sending you to [pick]."))
var/atom/movable/screen/splash/fade_in = new(null, null, src, hopper, FALSE)
var/atom/movable/screen/splash/fade_in = new(null, null, hopper, FALSE)
fade_in.Fade(FALSE)
ADD_TRAIT(src, TRAIT_NO_TRANSFORM, SERVER_HOPPER_TRAIT)