Removed cap for cash in account module (allow above 16000 for cashdmg feature.)

This commit is contained in:
Greyscale 2009-06-16 21:52:04 -07:00
parent cfd50d8882
commit 95c217aad6

View File

@ -119,11 +119,6 @@ stock AccountSetClientCash(client, value)
{
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.
SetEntData(client, g_iToolsAccount, value, 4);