From f3b04d52d55a7242fe1cbbb3b93f629b9bd32c54 Mon Sep 17 00:00:00 2001 From: Pascal Sthamer Date: Tue, 18 Feb 2020 14:53:39 +0100 Subject: [PATCH] Fix typo --- protocols/minecraftvanilla.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/minecraftvanilla.js b/protocols/minecraftvanilla.js index f8b051c..45dd6c5 100644 --- a/protocols/minecraftvanilla.js +++ b/protocols/minecraftvanilla.js @@ -57,7 +57,7 @@ class MinecraftVanilla extends Core { } } - // players.sample may not contain all players or no players at all, depending on how many players are only. + // players.sample may not contain all players or no players at all, depending on how many players are online. // Insert a dummy player object for every online player that is not listed in players.sample. // Limit player amount to 10.000 players for performance reasons. for (let i = state.players.length; i < Math.min(json.players.online, 10000); i++) {