Dragonsoul qualification level fix
This commit is contained in:
@@ -50,7 +50,7 @@ bool CHARACTER::DragonSoul_IsQualified() const
|
||||
void CHARACTER::DragonSoul_GiveQualification()
|
||||
{
|
||||
// MR-12: Check min level for Dragonsoul qualification
|
||||
if (GetLevel() > 30)
|
||||
if (GetLevel() < 30)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace quest
|
||||
}
|
||||
|
||||
// MR-12: Check min level for Dragonsoul qualification
|
||||
if (ch->GetLevel() <= 30)
|
||||
if (ch->GetLevel() < 30)
|
||||
{
|
||||
sys_err("DS_QUEST_GIVE_QUALIFICATION:: LEVEL TOO LOW");
|
||||
return 0;
|
||||
@@ -71,7 +71,7 @@ namespace quest
|
||||
}
|
||||
|
||||
// MR-12: Check min level for Dragonsoul qualification
|
||||
if (ch->GetLevel() <= 30)
|
||||
if (ch->GetLevel() < 30)
|
||||
{
|
||||
sys_err("DS_QUEST_IS_QUALIFIED:: LEVEL TOO LOW");
|
||||
lua_pushnumber(L, 0);
|
||||
|
||||
Reference in New Issue
Block a user