From 95c217aad654ef7a3ba8a054ab79d8f8c4c070b9 Mon Sep 17 00:00:00 2001 From: Greyscale Date: Tue, 16 Jun 2009 21:52:04 -0700 Subject: [PATCH] Removed cap for cash in account module (allow above 16000 for cashdmg feature.) --- src/zr/account.inc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/zr/account.inc b/src/zr/account.inc index 3d6e507..22f2cb2 100644 --- a/src/zr/account.inc +++ b/src/zr/account.inc @@ -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);