From cd5fca2e78139320752d06ba0e46ddbb317b8c5b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 27 Feb 2021 16:17:40 +0100 Subject: [PATCH] [MIRROR] Restaurant Customerbots now gib into robotic gibs (#3692) * Restaurant Customerbots now gib into robotic gibs * Update robot_customer.dm * Update robot_customer.dm Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com> Co-authored-by: Gandalf --- .../mob/living/simple_animal/friendly/robot_customer.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/friendly/robot_customer.dm b/code/modules/mob/living/simple_animal/friendly/robot_customer.dm index a1cfa1f00a9..3a47f43ff69 100644 --- a/code/modules/mob/living/simple_animal/friendly/robot_customer.dm +++ b/code/modules/mob/living/simple_animal/friendly/robot_customer.dm @@ -44,6 +44,10 @@ QDEL_NULL(hud_to_show_on_hover) return ..() +///Robots need robot gibs...! +/mob/living/simple_animal/robot_customer/spawn_gibs() + new /obj/effect/gibspawner/robot(drop_location(), src) + /mob/living/simple_animal/robot_customer/MouseEntered(location, control, params) . = ..() hud_to_show_on_hover?.add_hud_to(usr)