Need to change the following code on line 408 in order to get this plugin working again:
void OnItemCraftFinished(ItemCraftTask task, Item item, ItemCrafter crafter)
{
var player = crafter.owner;
if (player != null)
if (hasQuests(player.userID) && isQuestItem(player.userID, item.info.shortname, QuestType.Craft))
ProcessProgress(player, QuestType.Craft, item.info.shortname, item.amount);
}
Need to change the following code on line 408 in order to get this plugin working again: