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

fix(esx_multichar/server/modules/multicharacter.lua): Added missing parameter #1508

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added missing parameter
Added a missing parameter that wouldnt allow users to have custom charSlots
1OSaft authored Nov 26, 2024
commit ccc9b3d3e7a6f796c8cd20f9d1eceb74de190d73
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ function Multicharacter:SetupCharacters(source)
local identifier = Server:GetIdentifier(source)
ESX.Players[identifier] = true

local slots = Database:GetPlayerSlots()
local slots = Database:GetPlayerSlots(identifier)
identifier = Server.prefix .. "%:" .. identifier

local rawCharacters = Database:GetPlayerInfo(identifier, slots)