From 539f25e9e217fc4b1cd63d8427154588e2cfd757 Mon Sep 17 00:00:00 2001 From: Raph Date: Wed, 13 Dec 2023 17:45:47 +0100 Subject: [PATCH] char reputation add RenownLevel --- reputations.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/reputations.go b/reputations.go index e48128d..abe8d92 100644 --- a/reputations.go +++ b/reputations.go @@ -30,11 +30,12 @@ type Reputations struct { Id float64 `json:"id"` } `json:"faction"` Standing struct { - Raw float64 `json:"raw"` - Value float64 `json:"value"` - Max float64 `json:"max"` - Tier float64 `json:"tier"` - Name string `json:"name"` + Raw float64 `json:"raw"` + Value float64 `json:"value"` + Max float64 `json:"max"` + Tier float64 `json:"tier"` + Name string `json:"name"` + RenownLevel int64 `json:"renown_level"` } `json:"standing"` } `json:"reputations"` Links struct {