From 4dbde04a7ced75a3afed5246eb756ef4a4666a78 Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:47:47 +0530 Subject: [PATCH] [NO GBP] Labour stacker gives points for sheets again (#88054) ## About The Pull Request - Fixes #88053 ## Changelog :cl: fix: Labour stacker machine gives points for sheets again /:cl: --- code/modules/mining/laborcamp/laborstacker.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/laborcamp/laborstacker.dm b/code/modules/mining/laborcamp/laborstacker.dm index ee700e3d977..e7966764b6a 100644 --- a/code/modules/mining/laborcamp/laborstacker.dm +++ b/code/modules/mining/laborcamp/laborstacker.dm @@ -150,10 +150,10 @@ points += SHEET_POINT_VALUE * input.amount return ..() -/obj/machinery/mineral/stacking_machine/laborstacker/attackby(obj/item/weapon, mob/user, params) +/obj/machinery/mineral/stacking_machine/laborstacker/base_item_interaction(mob/living/user, obj/item/weapon, list/modifiers) if(istype(weapon, /obj/item/stack/sheet)) process_sheet(weapon) - return + return ITEM_INTERACT_SUCCESS return ..() /**********************Point Lookup Console**************************/