Merge pull request #1298 from Arctos2win/Arctos2win-Notify

Remove or statements that don't do stuff
This commit is contained in:
Gellipapa
2024-01-27 16:31:13 +01:00
committed by GitHub
+2 -2
View File
@@ -25,8 +25,8 @@ local function Notify(notificatonType, length, message)
end
SendNuiMessage(json.encode({
type = notificatonType or "info",
length = length or 3000,
type = notificatonType,
length = length,
message = message or "ESX-Notify",
}))
end