Move consts to global.php

This commit is contained in:
slawkens 2024-01-27 08:44:51 +01:00
parent 2262c4e882
commit 6ed8f18115
2 changed files with 3 additions and 3 deletions

View File

@ -53,9 +53,6 @@ if($settingHighscoresVocationBox && $vocation !== 'all')
}
}
const SKILL_FRAGS = -1;
const SKILL_BALANCE = -2;
$skill = POT::SKILL__LEVEL;
if(is_numeric($list))
{

View File

@ -1,5 +1,8 @@
<?php
const SKILL_FRAGS = -1;
const SKILL_BALANCE = -2;
$i = 0;
define('HOOK_STARTUP', ++$i);