diff --git a/shard.yml b/shard.yml index fd7c72f..1c762c9 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: fleet_app_client -version: 0.2.10 +version: 0.2.11 authors: - Pauline De Polonia diff --git a/src/fleet_app/game.cr b/src/fleet_app/game.cr index e6fe802..ccae642 100644 --- a/src/fleet_app/game.cr +++ b/src/fleet_app/game.cr @@ -10,6 +10,7 @@ module FleetApp UNTURNED = "unturned" ARK_SE = "ark_se" THE_FOREST = "the_forest" + SATISFACTORY = "satisfactory" # ARK_SE stands for Ark Survival Evolved LIST = [ @@ -23,6 +24,7 @@ module FleetApp UNTURNED, ARK_SE, THE_FOREST, + SATISFACTORY, ] end end diff --git a/src/fleet_app_client.cr b/src/fleet_app_client.cr index 9eff054..c3a4b16 100644 --- a/src/fleet_app_client.cr +++ b/src/fleet_app_client.cr @@ -2,7 +2,7 @@ require "json" require "http/client" class FleetAppClient - VERSION = "0.2.10" + VERSION = "0.2.11" HOST = "fleet.hostari.com" SANDBOX_HOST = "sandbox-#{HOST}" DEVELOPMENT_HOST = "localhost:2450"