Remove unnecessary quest manager stuff.

This commit is contained in:
Kinglykrab
2022-10-10 19:35:16 -04:00
parent 78e6f86c33
commit a87a9b3532
3 changed files with 10 additions and 20 deletions
-16
View File
@@ -3723,19 +3723,3 @@ void QuestManager::LearnRecipe(uint32 recipe_id) {
initiator->LearnRecipe(recipe_id);
}
bool QuestManager::IsRaining() {
if (!zone) {
return false;
}
return zone->IsRaining();
}
bool QuestManager::IsSnowing() {
if (!zone) {
return false;
}
return zone->IsSnowing();
}