mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-27 18:42:44 +00:00
15 lines
616 B
Plaintext
15 lines
616 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 = tgui_alert(user, "How do you wish for Nar-Sie to interact with its surroundings?","NarChoice",list("CultStation13", "Nar-Singulo"))
|
|
if(choice == "CultStation13")
|
|
log_and_message_admins("has set narsie's behaviour to \"CultStation13\".", user)
|
|
narsie_behaviour = choice
|
|
if(choice == "Nar-Singulo")
|
|
log_and_message_admins("has set narsie's behaviour to \"Nar-Singulo\".", user)
|
|
narsie_behaviour = choice
|