From b7aa472430c41d1e94dbda5a2b96000791d34949 Mon Sep 17 00:00:00 2001
From: Matt <116982774+Burzah@users.noreply.github.com>
Date: Tue, 28 May 2024 23:15:42 +0000
Subject: [PATCH] Adjusted arguments for use_tool (#25662)
---
code/modules/mining/satchel_ore_boxdm.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/mining/satchel_ore_boxdm.dm b/code/modules/mining/satchel_ore_boxdm.dm
index 06b4cd19f0b1..92ed05e83c2a 100644
--- a/code/modules/mining/satchel_ore_boxdm.dm
+++ b/code/modules/mining/satchel_ore_boxdm.dm
@@ -26,7 +26,7 @@
/obj/structure/ore_box/crowbar_act(mob/living/user, obj/item/I)
. = TRUE
- if(!I.use_tool(src, user, 5 SECONDS, I.tool_volume))
+ if(!I.use_tool(src, user, 5 SECONDS, volume = I.tool_volume))
return
user.visible_message("[user] pries [src] apart.", "You pry apart [src].", "You hear splitting wood.")
deconstruct(TRUE, user)