From 0b50e6c343190e8e42c3eea335d7b10da763e26e Mon Sep 17 00:00:00 2001 From: Greelan <53196309+Greelan@users.noreply.github.com> Date: Tue, 15 Feb 2022 08:16:32 +1100 Subject: [PATCH] Unturned: Fix two input types Inadvertently reversed the input types for Steam64 ID and GSLT token. Thanks to @IceOfWraith for the pickup! --- unturnedconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unturnedconfig.json b/unturnedconfig.json index 059dc1d..f63b2d1 100644 --- a/unturnedconfig.json +++ b/unturnedconfig.json @@ -96,7 +96,7 @@ "Description": "[Steam64 ID](https://steamidfinder.com/) of the server's owner, which gives them administrator commands and fully sets up the server", "Keywords": "owner", "FieldName": "Owner", - "InputType": "text", + "InputType": "number", "IsFlagArgument": false, "ParamFieldName": "Owner", "IncludeInCommandLine": false, @@ -108,7 +108,7 @@ "Description": "Sets the [Game Server Login Token](https://steamcommunity.com/dev/managegameservers) for the server. Required for the server to appear in the server list. Use Steam App ID 304930", "Keywords": "GSLT,token", "FieldName": "GSLT", - "InputType": "number", + "InputType": "text", "IsFlagArgument": false, "ParamFieldName": "GSLT", "IncludeInCommandLine": false,