From d16869b55ae2f13f0ed127b353e4281bae35a3ca Mon Sep 17 00:00:00 2001 From: Benzo <102178921+Benzo00@users.noreply.github.com> Date: Sat, 17 Sep 2022 03:33:11 +0200 Subject: [PATCH] fix(esx_society): spelling misstake --- [esx_addons]/esx_society/server/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/[esx_addons]/esx_society/server/main.lua b/[esx_addons]/esx_society/server/main.lua index 1dac3224..affefaaa 100644 --- a/[esx_addons]/esx_society/server/main.lua +++ b/[esx_addons]/esx_society/server/main.lua @@ -286,8 +286,8 @@ ESX.RegisterServerCallback('esx_society:setJob', function(source, cb, identifier xTarget.showNotification(_U('you_have_been_hired', job)) xPlayer.showNotification(_U("you_have_hired", xTarget.getName())) elseif type == 'promote' then - xTarget.showNotification(_U('you_have_promoted')) - xPlayer.showNotification(_U("you_successfully_promoted", xTarget.getName())) + xTarget.showNotification(_U('you_have_been_promoted')) + xPlayer.showNotification(_U("you_have_promoted", xTarget.getName())) elseif type == 'fire' then xTarget.showNotification(_U('you_have_been_fired', xTarget.getJob().label)) xPlayer.showNotification(_U("you_have_fired", xTarget.getName()))