Skip to content

Commit

Permalink
Update Enshrouded.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmcodes authored Apr 16, 2024
1 parent ca9973b commit 50bec5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Enshrouded.cs/Enshrouded.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Enshrouded: SteamCMDAgent
name = "WindowsGSM.Enshrouded", // WindowsGSM.XXXX
author = "ohmcodes",
description = "WindowsGSM plugin for supporting Enshrouded Dedicated Server",
version = "1.0.2",
version = "1.0.3",
url = "https://github.com/ohmcodes/WindowsGSM.Enshrouded", // Github repository link (Best practice)
color = "#34c9eb" // Color Hex
};
Expand Down Expand Up @@ -63,9 +63,9 @@ public async void CreateServerCFG()
saveDirectory = "./savegame",
logDirectory = "./logs",
ip = $"{_serverData.ServerIP}",
gamePort = _serverData.ServerPort,
queryPort = _serverData.ServerQueryPort,
slotCount = _serverData.ServerMaxPlayer
gamePort = Int32.Parse(_serverData.ServerPort),
queryPort = Int32.Parse(_serverData.ServerQueryPort),
slotCount = Int32.Parse(_serverData.ServerMaxPlayer)
};

// Convert the object to JSON format
Expand Down

0 comments on commit 50bec5c

Please sign in to comment.