We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d1d62 commit 65606a3Copy full SHA for 65606a3
1 file changed
player-counter/src/Enums/GameQueryType.php
@@ -7,19 +7,34 @@
7
enum GameQueryType: string implements HasLabel
8
{
9
case Source = 'source';
10
+
11
case MinecraftJava = 'minecraft';
12
case MinecraftBedrock = 'minecraftbe';
13
14
case Rust = 'rust';
15
case Arma3 = 'arma3';
16
+ case ArkSe = 'arkse';
17
+ case Squad = 'squad';
18
+ case Unturned = 'unturned';
19
+ case Valheim = 'valheim';
20
+ case VRising = 'vrising';
21
22
case Terraria = 'terraria';
23
+ case Tshock = 'tshock';
24
25
case SAMP = 'samp';
26
case MultiTheftAuto = 'mta';
27
case FiveMRedM = 'cfx';
28
29
case Teamspeak3 = 'teamspeak3';
30
case Mumble = 'mumble';
31
32
public function getLabel(): string
33
34
+ if ($this === self::ArkSe) {
35
+ return 'ARK: Survival Evolved';
36
+ }
37
38
if ($this === self::SAMP) {
39
return 'SA:MP';
40
}
0 commit comments