From 9f7f129bd5bbf76396659e9e8ffd152553d0f906 Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 29 Jan 2025 19:04:52 +0000 Subject: [PATCH] FIxed `HandleRecipe` incorrectly handling tools --- Libraries/Core/Controllers/HideoutController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Core/Controllers/HideoutController.cs b/Libraries/Core/Controllers/HideoutController.cs index 59a9a477..f55b473e 100644 --- a/Libraries/Core/Controllers/HideoutController.cs +++ b/Libraries/Core/Controllers/HideoutController.cs @@ -772,7 +772,7 @@ public class HideoutController( { foreach (var tool in hideoutProduction.SptRequiredTools) { - toolsToSendToPlayer.AddRange([tool]); + toolsToSendToPlayer.Add([tool]); } }