We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea40795 + a9e7978 commit 02f67d1Copy full SHA for 02f67d1
1 file changed
src/mod_pvp_quests_scripts.cpp
@@ -128,6 +128,11 @@ class BgQuestRewardScript : public BGScript
128
if (!bg->isRated())
129
return; // Skirmish (unrated arena match)
130
131
+ bool matchValidity = bg->GetStatus() == STATUS_IN_PROGRESS && bg->GetStartTime() >= uint32(bg->GetStartDelayTime()) + 15000; // Treated in upstream AC as `bValidArena`
132
+
133
+ if (!matchValidity)
134
+ return;
135
136
if (player->HasQuest(QUEST_ARENA_DAILY))
137
player->KilledMonsterCredit(CREATURE_ARENA_COMPLETED);
138
0 commit comments