Give a little (#50710)

Co-Authored-By: Jordan Brown <Cyberboss@users.noreply.github.com>
This commit is contained in:
Couls
2020-05-08 19:41:25 -07:00
committed by GitHub
co-authored by Jordan Brown
parent 26298a1f55
commit c3c81454f5
4 changed files with 91 additions and 0 deletions
+11
View File
@@ -64,3 +64,14 @@
/datum/keybinding/carbon/select_harm_intent/down(client/user)
user.mob?.a_intent_change(INTENT_HARM)
return TRUE
/datum/keybinding/carbon/give
hotkey_keys = list("G")
name = "Give_Item"
full_name = "Give item"
description = "Give the item you're currently holding"
/datum/keybinding/carbon/give/down(client/user)
var/mob/living/carbon/C = user.mob
C.give()
return TRUE