Skip to content

Commit

Permalink
fix(dev): make eslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Blumlaut committed Aug 10, 2023
1 parent 119e41e commit b1fd689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/bot/commands/playerlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module.exports = {
var row

if (getPlayers().length != 0) {
for (let [_, player] of Object.values(players).entries()) {
for (let [_, player] of Object.values(players).entries()) { // eslint-disable-line no-unused-vars
if (!player.dropped) {

if (ids.length >= 500 || usernames.length >= 500 || discordnames.length >= 500) {
Expand Down

0 comments on commit b1fd689

Please sign in to comment.