mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Cast to proper type
This commit is contained in:
parent
ff59db1b95
commit
869aab686c
@ -131,7 +131,7 @@ void Host_KickID_f(const CCommand& args)
|
||||
|
||||
if (bOnlyDigits)
|
||||
{
|
||||
uint64_t nTargetID = static_cast<int64_t>(std::stoll(args.Arg(1)));
|
||||
uint64_t nTargetID = static_cast<uint64_t>(std::stoll(args.Arg(1)));
|
||||
if (nTargetID > MAX_PLAYERS) // Is it a possible originID?
|
||||
{
|
||||
uint64_t nOriginID = pClient->GetOriginID();
|
||||
|
Loading…
x
Reference in New Issue
Block a user