mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
e063223199
* autolathe1 * cl * Oops * pay the price --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
/**
|
|
* tgui state: new_player_state
|
|
*
|
|
* Checks that the user is a /mob/dead/new_player
|
|
*/
|
|
|
|
GLOBAL_DATUM_INIT(new_player_state, /datum/ui_state/new_player_state, new)
|
|
|
|
/datum/ui_state/new_player_state/can_use_topic(src_object, mob/user)
|
|
return isnewplayer(user) ? UI_INTERACTIVE : UI_CLOSE
|