We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7cdb593 + 8ddc26a commit 6cdfb79Copy full SHA for 6cdfb79
1 file changed
src/Syntax/SteamApi/Containers/GameDetails.php
@@ -9,6 +9,8 @@ class GameDetails extends BaseContainer
9
public $serverIp;
10
11
public $serverSteamId;
12
+
13
+ public $lobbyId;
14
15
public $extraInfo;
16
@@ -19,6 +21,7 @@ public function __construct($gameDetails)
19
21
$this->serverIp = $this->checkIssetField($gameDetails, 'gameserverip');
20
22
$this->serverSteamId = $this->checkIssetField($gameDetails, 'gameserversteamid');
23
$this->extraInfo = $this->checkIssetField($gameDetails, 'gameextrainfo');
24
+ $this->lobbyId = $this->checkIssetField($gameDetails, 'lobbysteamid');
25
$this->gameId = is_null($gameId) ? null : (int)$gameId;
26
}
27
0 commit comments