mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-09 16:33:50 +00:00
Co-authored-by: Fikou <piotrbryla@onet.pl> Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
/*!
|
|
* Copyright (c) 2021 Arm A. Hammer
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/**
|
|
* tgui state: never_state
|
|
*
|
|
* Always closes the UI, no matter what. See the ui_state in religious_tool.dm to see an example
|
|
*/
|
|
|
|
GLOBAL_DATUM_INIT(never_state, /datum/ui_state/never_state, new)
|
|
|
|
/datum/ui_state/never_state/can_use_topic(src_object, mob/user)
|
|
return UI_CLOSE
|