Skip to content

Commit 65606a3

Browse files
committed
add more game query types
1 parent 38d1d62 commit 65606a3

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

player-counter/src/Enums/GameQueryType.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,34 @@
77
enum GameQueryType: string implements HasLabel
88
{
99
case Source = 'source';
10+
1011
case MinecraftJava = 'minecraft';
1112
case MinecraftBedrock = 'minecraftbe';
13+
1214
case Rust = 'rust';
1315
case Arma3 = 'arma3';
16+
case ArkSe = 'arkse';
17+
case Squad = 'squad';
18+
case Unturned = 'unturned';
19+
case Valheim = 'valheim';
20+
case VRising = 'vrising';
21+
1422
case Terraria = 'terraria';
23+
case Tshock = 'tshock';
24+
1525
case SAMP = 'samp';
1626
case MultiTheftAuto = 'mta';
1727
case FiveMRedM = 'cfx';
28+
1829
case Teamspeak3 = 'teamspeak3';
1930
case Mumble = 'mumble';
2031

2132
public function getLabel(): string
2233
{
34+
if ($this === self::ArkSe) {
35+
return 'ARK: Survival Evolved';
36+
}
37+
2338
if ($this === self::SAMP) {
2439
return 'SA:MP';
2540
}

0 commit comments

Comments
 (0)