Removed cap for cash in account module (allow above 16000 for cashdmg feature.)
This commit is contained in:
parent
cfd50d8882
commit
95c217aad6
|
@ -119,11 +119,6 @@ stock AccountSetClientCash(client, value)
|
||||||
{
|
{
|
||||||
value = 0;
|
value = 0;
|
||||||
}
|
}
|
||||||
// If value is above max, then set to max.
|
|
||||||
else if (value > ACCOUNT_CASH_MAX)
|
|
||||||
{
|
|
||||||
value = ACCOUNT_CASH_MAX;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set client's cash.
|
// Set client's cash.
|
||||||
SetEntData(client, g_iToolsAccount, value, 4);
|
SetEntData(client, g_iToolsAccount, value, 4);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user