mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 09:01:40 +00:00
* Grep for space indentation * aa * Update species.dm * Update species.dm * Update maps.dm * Update examine.dm Co-authored-by: TiviPlus <57223640+TiviPlus@users.noreply.github.com> Co-authored-by: Azarak <azarak10@gmail.com>
16 lines
325 B
Plaintext
16 lines
325 B
Plaintext
/*!
|
|
* Copyright (c) 2020 Aleksej Komarov
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/**
|
|
* tgui state: always_state
|
|
*
|
|
* Always grants the user UI_INTERACTIVE. Period.
|
|
*/
|
|
|
|
GLOBAL_DATUM_INIT(always_state, /datum/ui_state/always_state, new)
|
|
|
|
/datum/ui_state/always_state/can_use_topic(src_object, mob/user)
|
|
return UI_INTERACTIVE
|