diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 41b0493b05..4cae44456a 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -84,6 +84,7 @@ GLOBAL_LIST_INIT(available_ui_styles, list( var/atom/movable/screen/claw_hud_button var/atom/movable/screen/tail_hud_button var/atom/movable/screen/cuphand_hud_button + var/atom/movable/screen/beans_hud_button var/atom/movable/screen/tend_hud_button var/atom/movable/screen/butt_hud_button diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 6877bcf133..70745ffc57 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -450,6 +450,10 @@ cuphand_hud_button.hud = src infodisplay += cuphand_hud_button + beans_hud_button = new /atom/movable/screen/beans_hud_button() + beans_hud_button.hud = src + infodisplay += beans_hud_button + tend_hud_button = new /atom/movable/screen/tend_hud_button() tend_hud_button.hud = src infodisplay += tend_hud_button diff --git a/code/_onclick/hud/screen_objects/character_actions.dm b/code/_onclick/hud/screen_objects/character_actions.dm index 7148ba8843..2bc7672f04 100644 --- a/code/_onclick/hud/screen_objects/character_actions.dm +++ b/code/_onclick/hud/screen_objects/character_actions.dm @@ -493,7 +493,7 @@ name = "cuphand on people!" icon = 'icons/mob/screen_gen.dmi' icon_state = "cuphand" - screen_loc = "EAST-1:4, SOUTH+4:12" + screen_loc = "EAST-1:4, SOUTH+4: 8" /atom/movable/screen/cuphand_hud_button/Click(location,control,params) var/mob/living/carbon/human/H = usr @@ -502,6 +502,21 @@ return H.emote("cuphand") +//////////////////////////////////////////////////////////// +/// Beans button +/atom/movable/screen/beans_hud_button + name = "bean on people!" + icon = 'icons/mob/screen_gen.dmi' + icon_state = "beans" + screen_loc = "EAST-2:4, SOUTH+4:12" + +/atom/movable/screen/beans_hud_button/Click(location,control,params) + var/mob/living/carbon/human/H = usr + if(!ishuman(usr)) + to_chat(usr, span_alert("Sorry! You've gotta be a fully spawned in character with hopes and dreams to use this!")) + return + H.emote("beans") + //////////////////////////////////////////////////////////// /// Tend button /atom/movable/screen/tend_hud_button diff --git a/icons/mob/screen_gen.dmi b/icons/mob/screen_gen.dmi index 1a720cd2fd..8665903931 100644 Binary files a/icons/mob/screen_gen.dmi and b/icons/mob/screen_gen.dmi differ