Migrate tradeskills and traps [skip ci]

This commit is contained in:
Akkadius
2020-03-11 03:41:09 -05:00
parent df66c75df2
commit f5cba5ecab
5 changed files with 15 additions and 12 deletions
+2 -2
View File
@@ -3158,7 +3158,7 @@ bool QuestManager::EnableRecipe(uint32 recipe_id)
{
bool success = false;
if (recipe_id > 0)
success = database.EnableRecipe(recipe_id);
success = content_db.EnableRecipe(recipe_id);
return (success);
}
@@ -3166,7 +3166,7 @@ bool QuestManager::DisableRecipe(uint32 recipe_id)
{
bool success = false;
if (recipe_id > 0)
success = database.DisableRecipe(recipe_id);
success = content_db.DisableRecipe(recipe_id);
return (success);
}