Dragonsoul qualification level fix

This commit is contained in:
Mind Rapist
2026-02-18 13:28:00 +02:00
parent 536f3586ed
commit bf4de6e84f
2 changed files with 3 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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);