Fix: ps2Points & ps2PremiumPoints

This commit is contained in:
Linventif 2024-08-18 14:02:06 +00:00
parent 462cb5e102
commit c273ed209b

View File

@ -38,8 +38,11 @@ local function getCustomCompatability(ply)
values.xp = ply:GetXP() values.xp = ply:GetXP()
end end
// Pointshop // Pointshop 2
if Pointshop2 then values.points = ply:PS2_GetPoints() end if Pointshop2 && ply.PS2_Wallet then
values.ps2Points = ply.PS2_Wallet.points
values.ps2PremiumPoints = ply.PS2_Wallet.premiumPoints
end
return values return values
end end