mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 11:31:12 +01:00
Slight refactor and improvement of the hands inventory handling procs, DMDoc, SDMM markings. Fixed a runtime with RIG cells removal.
14 lines
451 B
Plaintext
14 lines
451 B
Plaintext
/mob/living/silicon/verb/silicon_mimic_accent()
|
|
set name = "Mimic Accent"
|
|
set category = "Subsystems"
|
|
|
|
var/chosen_accent = tgui_input_list(src, "Choose an accent to mimic.", "Accent Mimicry", possible_accents)
|
|
if(!chosen_accent)
|
|
return
|
|
|
|
accent = chosen_accent
|
|
to_chat(src, SPAN_NOTICE("You have set your synthesizer to mimic the [chosen_accent] accent."))
|
|
|
|
/mob/living/silicon/put_in_hands(obj/item/item_to_equip)
|
|
. = ..(item_to_equip, TRUE)
|