mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
🐛 return 0 for logs wasnt working
This commit is contained in:
parent
f7b62913cd
commit
fcff1c5074
1 changed files with 5 additions and 1 deletions
|
|
@ -219,7 +219,11 @@ public:
|
|||
}
|
||||
})))
|
||||
{
|
||||
return (-1 * users.contains(name)) + users.contains(name);
|
||||
if (users.contains(name))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue