TibiaData / tibiadata-api-go

TibiaData API written in Golang and deployed in container (version v3 and above).
https://api.tibiadata.com
MIT License
84 stars 28 forks source link

bug: issue parsing todays boosted creature #371

Closed tobiasehlert closed 3 months ago

tobiasehlert commented 3 months ago

Todays boosted creature is not parsed correctly on the /v4/creatures endpoint.

Actual parsing:

{
  "creatures": {
    "boosted": {
      "name": "",
      "race": "",
      "image_url": "https://static.tibia.com/images/global/header/monsters/acidblob.gif",
      "featured": true
    },

Expected parsing:

{
  "creatures": {
    "boosted": {
      "name": "Acid Blobs",
      "race": "acidblob",
      "image_url": "https://static.tibia.com/images/global/header/monsters/acidblob.gif",
      "featured": true
    },

Reported on Discord by Violent Beams (here).