mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-01-02 22:07:49 +01:00
Check if the player is ported, fix NullPointerException post 876 on spigotmc.org (#374)
This commit is contained in:
parent
8e64fb8c21
commit
0374da573b
@ -35,6 +35,8 @@ public class PPSSubCmd extends ViaSubCommand {
|
||||
long max = 0;
|
||||
|
||||
for (Player p : Bukkit.getOnlinePlayers()) {
|
||||
if (!ViaVersion.getInstance().isPorted(p))
|
||||
continue;
|
||||
int playerVersion = ViaVersion.getInstance().getPlayerVersion(p);
|
||||
if (!playerVersions.containsKey(playerVersion))
|
||||
playerVersions.put(playerVersion, new HashSet<String>());
|
||||
|
Loading…
Reference in New Issue
Block a user