Update regex for 1.16.2

This commit is contained in:
Lamp 2020-08-17 20:12:12 -07:00 committed by GitHub
parent 98aae0c617
commit 3a7a960453
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,10 +20,10 @@ class MinecraftServer extends EventEmitter {
this.jar = jar;
this.idleMinutes = 0;
this.locked = false;
// 1.16.1
// 1.16.2
this.listCommand = "minecraft:list";
this.listEmptyRegex = /^\[\d\d:\d\d:\d\d INFO\]: There are 0 of a max of \d{1,} players online:$/;
this.listNotEmptyRegex = /^\[\d\d:\d\d:\d\d INFO\]: There are [1-9]\d{0,} of a max of \d{1,} players online:/;
this.listEmptyRegex = /^\[\d\d:\d\d:\d\d\] \[Server thread\/INFO\]: There are 0 of a max of \d{1,} players online:$/;
this.listNotEmptyRegex = /^\[\d\d:\d\d:\d\d\] \[Server thread\/INFO\]: There are [1-9]\d{0,} of a max of \d{1,} players online:/;
}
start() {