From b260147513c660e2c8e9815e9b71ab848ebd900c Mon Sep 17 00:00:00 2001 From: nggcasey <60057103+nggcasey@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:47:31 +1000 Subject: [PATCH] Fixed issue with planting more than plant limit Players could plant more than the Config.PlayerPlantLimit - This fix resolves that. --- client/cl_planting.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cl_planting.lua b/client/cl_planting.lua index 77e6d24..722c3ae 100644 --- a/client/cl_planting.lua +++ b/client/cl_planting.lua @@ -199,7 +199,7 @@ RegisterNetEvent('it-drugs:client:useSeed', function(plantItem, metadata) if plantCount >= Config.PlayerPlantLimit then ShowNotification(nil, _U('NOTIFICATION__MAX__PLANTS'), "Error") - + return end end