TibiaData / tibiadata-api-go

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

bug: pluralisation on todays boosted creature #373

Closed tobiasehlert closed 3 months ago

tobiasehlert commented 3 months ago

Boosted creatures names are containing s at the end. This was introduced with PR #372.

Actual parsing:

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

Expected parsing:

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

Reported on Discord by Violent Beams (here).

rel #371