diff --git a/gamemodes/irresistible/cnr/features/vip/redeem_code.pwn b/gamemodes/irresistible/cnr/features/vip/redeem_code.pwn index 2a0f458..fc1fba5 100644 --- a/gamemodes/irresistible/cnr/features/vip/redeem_code.pwn +++ b/gamemodes/irresistible/cnr/features/vip/redeem_code.pwn @@ -213,11 +213,12 @@ thread OnGrabLatestDonor( hidden ) // make this optional if ( funding_goal <= 0.0 ) { + new Float: funding_goal_percent = total_donations / funding_goal * 100.0; + // Prevents total revenue for the month being disclosed mathematically if ( funding_goal_percent >= 100.0 ) { TextDrawSetString( g_TopDonorTD, sprintf( "Latest Donor %s - $%0.2f, ~g~Month Is Fully %0.2f%% Funded!", szName, last_donation, 100.0 ) ); } else { - new Float: funding_goal_percent = total_donations / funding_goal * 100.0; TextDrawSetString( g_TopDonorTD, sprintf( "Latest Donor %s - $%0.2f, ~r~Month Is Only %0.2f%% Funded!", szName, last_donation, funding_goal_percent ) ); } } else {