From 711cd521ebb5e0ad6c8532db972ed741417359de Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:46:10 +0300 Subject: [PATCH 1/2] update welding tool and eguns --- modular_bandastation/gunhud/code/gunhud_component.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modular_bandastation/gunhud/code/gunhud_component.dm b/modular_bandastation/gunhud/code/gunhud_component.dm index 1df38eb90143a..a40b7c386d0da 100644 --- a/modular_bandastation/gunhud/code/gunhud_component.dm +++ b/modular_bandastation/gunhud/code/gunhud_component.dm @@ -145,6 +145,18 @@ . = ..() AddComponent(/datum/component/gunhud) +/obj/item/gun/energy/recharge_newshot() + . = ..() + SEND_SIGNAL(src, COMSIG_UPDATE_GUNHUD) + /obj/item/weldingtool/Initialize(mapload) . = ..() AddComponent(/datum/component/gunhud) + +/obj/item/weldingtool/set_welding(new_value) + . = ..() + SEND_SIGNAL(src, COMSIG_UPDATE_GUNHUD) + +/obj/item/weldingtool/use(used) + . = ..() + SEND_SIGNAL(src, COMSIG_UPDATE_GUNHUD) From 2d00a8b952cd801f528d8fdb678c2f5950bb2619 Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:14:42 +0300 Subject: [PATCH 2/2] how did this happen? --- modular_bandastation/gunhud/code/gunhud_component.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_bandastation/gunhud/code/gunhud_component.dm b/modular_bandastation/gunhud/code/gunhud_component.dm index a40b7c386d0da..d24885f9002df 100644 --- a/modular_bandastation/gunhud/code/gunhud_component.dm +++ b/modular_bandastation/gunhud/code/gunhud_component.dm @@ -145,7 +145,7 @@ . = ..() AddComponent(/datum/component/gunhud) -/obj/item/gun/energy/recharge_newshot() +/obj/item/gun/energy/recharge_newshot(no_cyborg_drain) . = ..() SEND_SIGNAL(src, COMSIG_UPDATE_GUNHUD)