mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Prevent uninitialized exception loop in TravelMgr
This commit is contained in:
@@ -1966,7 +1966,7 @@ void TravelMgr::LoadQuestTravelTable()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
uint32 objective;
|
uint32 objective = 0;
|
||||||
if (flag & (uint32)QuestRelationFlag::objective1)
|
if (flag & (uint32)QuestRelationFlag::objective1)
|
||||||
objective = 0;
|
objective = 0;
|
||||||
else if (flag & (uint32)QuestRelationFlag::objective2)
|
else if (flag & (uint32)QuestRelationFlag::objective2)
|
||||||
|
|||||||
Reference in New Issue
Block a user