mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-19 06:46:03 +01:00
fix: PlayersInfo not being set
This commit is contained in:
@@ -46,8 +46,9 @@ end
|
|||||||
|
|
||||||
AddEventHandler("playerJoining", function(oldId)
|
AddEventHandler("playerJoining", function(oldId)
|
||||||
local src = source
|
local src = source
|
||||||
PlayersInfo[src] = tempPlayersInfo[oldId]
|
local oldTempId = tonumber(oldId)
|
||||||
tempPlayersInfo[oldId] = nil
|
PlayersInfo[src] = tempPlayersInfo[oldTempId]
|
||||||
|
tempPlayersInfo[oldTempId] = nil
|
||||||
|
|
||||||
if Config.multiCharacter then return end
|
if Config.multiCharacter then return end
|
||||||
Wait(3000)
|
Wait(3000)
|
||||||
|
|||||||
Reference in New Issue
Block a user