Quote:
Originally Posted by sutto
Hey Dom,
Get the following when joining a pay to play comp.
|
The error message is displaying the wrong team credits amount.
Edit tournaments.php line 2471
PHP Code:
$errormessage = 'Error, insufficient credits. Joining this tournament costs '.$tmnt['join_cost'].' credits, your team only has '.$vbulletin->userinfo['tmnt_credits'].' credits.';
Replace with
PHP Code:
$errormessage = 'Error, insufficient credits. Joining this tournament costs '.$tmnt['join_cost'].' credits, your team only has '.$team['tmnt_credits'].' credits.';