mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 07:57:50 +00:00
* The TGS thing * Revert the 516 revert * Further segment the world/New() proc * Fixes an issue here
11 lines
277 B
Plaintext
11 lines
277 B
Plaintext
/**
|
|
* tgui state: new_player_state
|
|
*
|
|
* Checks that the user is a /mob/dead/new_player
|
|
*/
|
|
|
|
var/datum/ui_state/new_player_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
|