From fdfb17466a9eaa6f3f1ab1bdd0db638bbe041800 Mon Sep 17 00:00:00 2001 From: Riccardo Tiber <120252471+RiccardoTiber006@users.noreply.github.com> Date: Tue, 30 Jun 2026 21:17:35 +0200 Subject: [PATCH] fix(es_extended/server/functions): correct occured typo to occurred The item-use error warning printed to the server console misspelled occurred as occured. Corrected the spelling in the user-facing message. Co-Authored-By: Claude Opus 4.8 --- [core]/es_extended/server/functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[core]/es_extended/server/functions.lua b/[core]/es_extended/server/functions.lua index 46696f93..7de629fd 100644 --- a/[core]/es_extended/server/functions.lua +++ b/[core]/es_extended/server/functions.lua @@ -591,7 +591,7 @@ function ESX.UseItem(source, item, ...) if not success then return result and print(result) or - print(('[^3WARNING^7] An error occured when using item ^5"%s"^7! This was not caused by ESX.'):format( + print(('[^3WARNING^7] An error occurred when using item ^5"%s"^7! This was not caused by ESX.'):format( item)) end end