From 3a4b341ad6ef56133ba35388b8681fc628958e8d Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 29 Jul 2016 15:29:28 -0400 Subject: [PATCH] Allow quest controlled TS to have no returns --- zone/tradeskills.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/tradeskills.cpp b/zone/tradeskills.cpp index cdbd7b993..6deb51778 100644 --- a/zone/tradeskills.cpp +++ b/zone/tradeskills.cpp @@ -1317,7 +1317,7 @@ bool ZoneDatabase::GetTradeRecipe(uint32 recipe_id, uint8 c_type, uint32 some_id return false; } - if(results.RowCount() < 1) { + if(results.RowCount() < 1 && !spec->quest) { Log.Out(Logs::General, Logs::Error, "Error in GetTradeRecept success: no success items returned"); return false; }