nwesterhausen / valheim-discordconnector

A plugin to connect a Valheim server to a discord webhook.
https://discord-connector.valheim.games.nwest.one/
MIT License
27 stars 13 forks source link

Fix off by 1 error in TopPlayers.TopPlayersFormater() #69

Closed thedefside closed 3 years ago

thedefside commented 3 years ago

The top players leaderboard count is off by 1. For instance, if I set it to 5, it will only show 4. This is because the for loop is starting at 1 and using a < operator. I could have changed the operator to <=, but it seemed cleaner to just increment i when it was needed instead of decrementing it in multiple places.