mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 00:47:31 +01:00
7265630dde
Turned a ton of unmanaged globals into managed globals. Refactored some UT output. Removed some unused things, including vars. Added a test to ensure people don't keep adding new unmanaged vars.
15 lines
615 B
Plaintext
15 lines
615 B
Plaintext
/datum/admin_secret_item/admin_secret/alter_narise
|
|
name = "Alter Nar-Sie"
|
|
|
|
/datum/admin_secret_item/admin_secret/alter_narise/execute(var/mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
var/choice = input(user, "How do you wish for Nar-Sie to interact with its surroundings?") as null|anything in list("CultStation13", "Nar-Singulo")
|
|
if(choice == "CultStation13")
|
|
log_and_message_admins("has set narsie's behaviour to \"CultStation13\".", user)
|
|
GLOB.narsie_behaviour = choice
|
|
if(choice == "Nar-Singulo")
|
|
log_and_message_admins("has set narsie's behaviour to \"Nar-Singulo\".", user)
|
|
GLOB.narsie_behaviour = choice
|