Skip to content

Commit

Permalink
Added ModifiedCraftingSlots to Recipes (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsegura authored Aug 20, 2024
1 parent 877698e commit 6f79bb1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions wowgd/profession.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6f79bb1

Please sign in to comment.