mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 09:44:55 +02:00
Fix undefined constant
This commit is contained in:
@@ -45,7 +45,7 @@ $skill = POT::SKILL__LEVEL;
|
|||||||
if(is_numeric($list))
|
if(is_numeric($list))
|
||||||
{
|
{
|
||||||
$list = (int) $list;
|
$list = (int) $list;
|
||||||
if($list >= POT::SKILL_FIRST && $list <= SKILL__LAST)
|
if($list >= POT::SKILL_FIRST && $list <= POT::SKILL__LAST)
|
||||||
$skill = $list;
|
$skill = $list;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user