MAPG-205 delete unnecessary empty lines

This commit is contained in:
Bence Pőcze 2021-04-03 23:39:20 +02:00
parent d3a12fb6f1
commit 0e8ed14305
Signed by: bence
GPG Key ID: AA52B11A3269D1C1

View File

@ -30,9 +30,7 @@
Game.MultiConnector.connection.onopen = function () { Game.MultiConnector.connection.onopen = function () {
document.getElementById('loading').style.visibility = 'hidden'; document.getElementById('loading').style.visibility = 'hidden';
Game.MultiConnector.reconnectCounter = 0; Game.MultiConnector.reconnectCounter = 0;
Game.MultiConnector.connection.send(JSON.stringify({ func: 'connect_to_room', args: { roomId: roomId, token: Game.multi.token } })); Game.MultiConnector.connection.send(JSON.stringify({ func: 'connect_to_room', args: { roomId: roomId, token: Game.multi.token } }));
}; };