mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-03 06:01:46 +00:00
* CI now bans files with the same name * Part 1 * Warriorstar python tweaks * Part Deux * Fix unticked * fix
15 lines
362 B
Plaintext
15 lines
362 B
Plaintext
/datum/keybinding/silicon
|
|
category = KB_CATEGORY_SILICON
|
|
|
|
/datum/keybinding/silicon/can_use(client/C, mob/M)
|
|
return issilicon(M) && ..()
|
|
|
|
/datum/keybinding/silicon/switch_intent
|
|
name = "Switch Intents"
|
|
keys = list("4")
|
|
|
|
/datum/keybinding/silicon/switch_intent/down(client/C)
|
|
. = ..()
|
|
var/mob/living/silicon/M = C.mob
|
|
M.a_intent_change(INTENT_HOTKEY_LEFT)
|