Skip to content

Commit ade66aa

Browse files
committed
Add support for Expeditionary Forces CLDC
Signed-off-by: fugasjunior <mail@martinfunda.cz>
1 parent e68fda3 commit ade66aa

File tree

1 file changed

+3
-1
lines changed
  • backend/src/main/java/cz/forgottenempire/servermanager/workshop

1 file changed

+3
-1
lines changed

backend/src/main/java/cz/forgottenempire/servermanager/workshop/Arma3CDLC.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
public enum Arma3CDLC {
88
CSLA_IRON_CURTAIN("CSLA Iron Curtain", "csla"),
9+
EXPEDITIONARY_FORCES("Expeditionary Forces", "ef"),
910
GLOBAL_MOBILIZATION("Global Mobilization", "gm"),
1011
REACTION_FORCES("Reaction Forces", "rf"),
1112
SOG_PRAIRIE_FIRE("S.O.G. Prairie Fire", "vn"),
@@ -29,13 +30,14 @@ public String getId() {
2930
}
3031

3132
public static List<Arma3CDLC> getAll() {
32-
return List.of(CSLA_IRON_CURTAIN, GLOBAL_MOBILIZATION, REACTION_FORCES, SOG_PRAIRIE_FIRE, SPEARHEAD_1944, WESTERN_SAHARA);
33+
return List.of(CSLA_IRON_CURTAIN, EXPEDITIONARY_FORCES, GLOBAL_MOBILIZATION, REACTION_FORCES, SOG_PRAIRIE_FIRE, SPEARHEAD_1944, WESTERN_SAHARA);
3334
}
3435

3536
public static Arma3CDLC fromId(String id) {
3637
return switch (id) {
3738
case "csla" -> CSLA_IRON_CURTAIN;
3839
case "gm" -> GLOBAL_MOBILIZATION;
40+
case "ef" -> EXPEDITIONARY_FORCES;
3941
case "rf" -> REACTION_FORCES;
4042
case "vn" -> SOG_PRAIRIE_FIRE;
4143
case "spe" -> SPEARHEAD_1944;

0 commit comments

Comments
 (0)