mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 11:48:37 +00:00
Migrate tradeskills and traps [skip ci]
This commit is contained in:
+2
-2
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user