Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: custom ban deferral cards with images/customisation supported #821

Merged
merged 11 commits into from
Mar 11, 2024
Merged
2 changes: 1 addition & 1 deletion server/admin_server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ Citizen.CreateThread(function()
PrintDebugMessage("Connection of "..getName(player).." Declined, Banned for "..blacklist[bi].reason..", Ban ID: "..blacklist[bi].banid.."\n", 3)

local banMessageTitleColour = GetConvar("ea_banMessageTitleColour", "#354557")
local banMessageServerName = GetConvar("ea_banMessageServerName", "EasyAdmin")
local banMessageServerName = GetConvar("sv_projectName", "EasyAdmin")
Gravxd marked this conversation as resolved.
Show resolved Hide resolved
local banMessageShowStaff = GetConvar("ea_banMessageShowStaff", "true")
local banMessageStaffName = blacklist[bi].banner
local banMessageFooter = GetConvar("ea_banMessageFooter", "You can appeal this by ban by visiting our discord.")
Expand Down
Loading