From 6ed8f1811579c06da390f7e4b179d4975c7e67a2 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 27 Jan 2024 08:44:51 +0100 Subject: [PATCH] Move consts to global.php --- system/pages/highscores.php | 3 --- system/src/global.php | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/system/pages/highscores.php b/system/pages/highscores.php index ff2fbd40..1229dca3 100644 --- a/system/pages/highscores.php +++ b/system/pages/highscores.php @@ -53,9 +53,6 @@ if($settingHighscoresVocationBox && $vocation !== 'all') } } -const SKILL_FRAGS = -1; -const SKILL_BALANCE = -2; - $skill = POT::SKILL__LEVEL; if(is_numeric($list)) { diff --git a/system/src/global.php b/system/src/global.php index 34f13a8b..161185b7 100644 --- a/system/src/global.php +++ b/system/src/global.php @@ -1,5 +1,8 @@