Skip to content

Commit

Permalink
Fix late-join silicons have lobby screen (#1010)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Fixes #1002 
Так же, Fix Lobby Screen верб, теперь закрывает лобби скрин если типочек
в игре. На всякий случай

## Почему это хорошо для игры
ИИ при лейт джоине не висит в лобби общаясь в IC, арты конечно красивые,
но наблюдать тоже надо

## Changelog

:cl:
fix: Лейтджоин ИИ, больше не будут смотреть на лобби арт и общаться IC
/:cl:

---------

Co-authored-by: Gaxeer <[email protected]>
  • Loading branch information
AyIong and Gaxeer authored Jan 17, 2025
1 parent 07536eb commit ba145c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modular_bandastation/title_screen/code/new_player.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/mob/dead/new_player
var/title_collapsed = FALSE

/mob/living/silicon/ai/Initialize(mapload, datum/ai_laws/L, mob/target_ai)
. = ..()
if(isnewplayer(target_ai))
SStitle.hide_title_screen_from(client)

/mob/dead/new_player/Topic(href, href_list[])
if(src != usr)
return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ADMIN_VERB(change_title_screen_css, R_DEBUG, "Title Screen: Set CSS", ADMIN_VERB
set category = "Special"

if(!isnewplayer(src.mob))
SStitle.hide_title_screen_from(src)
return

SStitle.show_title_screen_to(src)
Expand Down

0 comments on commit ba145c4

Please sign in to comment.