mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 04:31:41 +00:00
* perfection * drones * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * apply suggestions from code review * Update ai_hud.dm --------- Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
19 lines
572 B
Plaintext
19 lines
572 B
Plaintext
/datum/data/pda/utility/robot_headlamp
|
|
name = "Adjust Headlamp"
|
|
icon = "lightbulb-o"
|
|
|
|
/datum/data/pda/utility/robot_headlamp/start()
|
|
var/mob/living/silicon/robot/robot = pda.loc
|
|
robot.control_headlamp()
|
|
if(!pda.silent)
|
|
playsound(pda, 'sound/machines/terminal_select.ogg', 15, TRUE)
|
|
|
|
/datum/data/pda/utility/robot_self_diagnosis
|
|
name = "Run Self-Diagnostics"
|
|
|
|
/datum/data/pda/utility/robot_self_diagnosis/start()
|
|
var/mob/living/silicon/robot/robot = pda.loc
|
|
robot.self_diagnosis()
|
|
if(!pda.silent)
|
|
playsound(pda, 'sound/machines/terminal_select.ogg', 15, TRUE)
|