This commit is contained in:
Emily 2019-08-01 01:23:19 +02:00
parent 5c93244934
commit 4cd9e4daf9

View File

@ -33,7 +33,7 @@ class FLYSocket {
let packetID = data.getInt8(this.pointer++);
packets.push({
packetID: packetID,
value: (this["handle_packet" + packetID] || this.handle_packetInvalid)(data)
value: (this["handle_packet" + packetID] || this.handle_packetInvalid).call(this, data)
});
}