From 6f79bb1840dd59095cd5933a9098722cc029521c Mon Sep 17 00:00:00 2001 From: Javier Segura Date: Tue, 20 Aug 2024 15:48:06 +0200 Subject: [PATCH] Added ModifiedCraftingSlots to Recipes (#78) --- wowgd/profession.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wowgd/profession.go b/wowgd/profession.go index 00b9934..ce0ccc1 100644 --- a/wowgd/profession.go +++ b/wowgd/profession.go @@ -119,6 +119,16 @@ type Recipe struct { Minimum float32 `json:"minimum"` Maximum float32 `json:"maximum"` } `json:"crafted_quantity"` + ModifiedCraftingSlots []struct { + SlotType struct { + Key struct { + Href string `json:"href"` + } `json:"key"` + Name string `json:"name"` + ID int `json:"id"` + } `json:"slot_type"` + DisplayOrder int `json:"display_order"` + } `json:"modified_crafting_slots"` } // RecipeMedia structure