mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
Remove redundant guid field from minecraftbedrock
This commit is contained in:
parent
4ecce4eff8
commit
883700d7dd
1 changed files with 2 additions and 1 deletions
|
@ -25,7 +25,8 @@ class MinecraftBedrock extends Core {
|
|||
const nonce = reader.part(8).toString('hex'); // should match the nonce we sent
|
||||
this.logger.debug('Nonce: ' + nonce);
|
||||
|
||||
state.raw.guid = reader.part(8).toString('hex');
|
||||
// These 8 bytes are identical to the serverId string we receive in decimal below
|
||||
reader.skip(8);
|
||||
|
||||
const magic = reader.part(16).toString('hex');
|
||||
this.logger.debug('Magic value: ' + magic);
|
||||
|
|
Loading…
Reference in a new issue