Quote:
Originally Posted by the Sandman
There are two
PHP Code:
if ($vboptions['arcadepass_enablejackpot'] == 1) {
Do we replace one or both?
|
It's the one in the part that defines the new points value after getting a valid position...
After:
PHP Code:
$position = $DB_site->query_first("
SELECT COUNT(*) + 1 AS position
FROM " . TABLE_PREFIX . "gamesessions AS gamesessions
WHERE score > $game[score] AND valid=1 AND gamesessions.gamename='$game[shortname]'
");
Change
PHP Code:
if ($vboptions['arcadepass_enablejackpot'] == 1) {
to
PHP Code:
if ($vboptions['arcadepass_enablejackpot'] == 1 AND $arcadepermissions['canfreearcade']==0) {