fix(es_extended/server/classes/player.lua): Fix showNotification function parameters to correspond with esx:showNotification event

This commit is contained in:
r3ps4J
2023-06-06 08:18:17 +00:00
parent cdfe4ddf43
commit d680d5ac4f
+2 -2
View File
@@ -572,8 +572,8 @@ function CreateExtendedPlayer(playerId, identifier, group, accounts, inventory,
end
end
function self.showNotification(msg)
self.triggerEvent('esx:showNotification', msg)
function self.showNotification(msg, type, length)
self.triggerEvent('esx:showNotification', msg, type, length)
end
function self.showHelpNotification(msg, thisFrame, beep, duration)