misc: fmt
This commit is contained in:
@@ -104,12 +104,10 @@ public partial class Connection : Node {
|
|||||||
OnWsConnectionSuccess?.Invoke();
|
OnWsConnectionSuccess?.Invoke();
|
||||||
UpdateGameList();
|
UpdateGameList();
|
||||||
UpdatePlayerList();
|
UpdatePlayerList();
|
||||||
GetReservations();
|
|
||||||
refreshGamePlayerListTimer = 5.0f;
|
refreshGamePlayerListTimer = 5.0f;
|
||||||
} else if (refreshGamePlayerListTimer <= 0.0f) {
|
} else if (refreshGamePlayerListTimer <= 0.0f) {
|
||||||
UpdateGameList();
|
UpdateGameList();
|
||||||
UpdatePlayerList();
|
UpdatePlayerList();
|
||||||
GetReservations();
|
|
||||||
refreshGamePlayerListTimer = 5.0f;
|
refreshGamePlayerListTimer = 5.0f;
|
||||||
} else {
|
} else {
|
||||||
refreshGamePlayerListTimer -= (float)delta;
|
refreshGamePlayerListTimer -= (float)delta;
|
||||||
@@ -310,7 +308,6 @@ public partial class Connection : Node {
|
|||||||
IsAdmin = true;
|
IsAdmin = true;
|
||||||
GetMoveWait();
|
GetMoveWait();
|
||||||
GetTournamentStatus();
|
GetTournamentStatus();
|
||||||
GetReservations();
|
|
||||||
OnBecomeAdmin?.Invoke();
|
OnBecomeAdmin?.Invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -318,9 +315,6 @@ public partial class Connection : Node {
|
|||||||
case "TOURNAMENT":
|
case "TOURNAMENT":
|
||||||
handleTournamentMessage(body);
|
handleTournamentMessage(body);
|
||||||
break;
|
break;
|
||||||
case "RESERVATION":
|
|
||||||
handleReservationMessage(body);
|
|
||||||
break;
|
|
||||||
case "GET":
|
case "GET":
|
||||||
string data = body.Split(":")[1];
|
string data = body.Split(":")[1];
|
||||||
if (body.StartsWith("MOVE_WAIT")) {
|
if (body.StartsWith("MOVE_WAIT")) {
|
||||||
|
|||||||
1
scripts/TournamentType.cs.uid
Normal file
1
scripts/TournamentType.cs.uid
Normal file
@@ -0,0 +1 @@
|
|||||||
|
uid://dwb6ioubllb24
|
||||||
Reference in New Issue
Block a user