diff --git a/Facepunch.Steamworks/Structs/ServerInit.cs b/Facepunch.Steamworks/Structs/ServerInit.cs index 02e3604..519e67a 100644 --- a/Facepunch.Steamworks/Structs/ServerInit.cs +++ b/Facepunch.Steamworks/Structs/ServerInit.cs @@ -36,21 +36,17 @@ public struct SteamServerInit /// public string GameDescription; - /// - /// Is a dedicated server - /// - public bool DedicatedServer; - - public SteamServerInit( string modDir, string gameDesc ) + public SteamServerInit( string modDir, string gameDesc ) { - DedicatedServer = true; - ModDir = modDir; + ModDir = modDir; GameDescription = gameDesc; GamePort = 27015; QueryPort = 27016; Secure = true; VersionString = "1.0.0.0"; + ModDir = "unset"; + GameDescription = "unset"; IpAddress = null; SteamPort = 0; }