Skip to content

Commit

Permalink
Fix RUST.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
BattlefieldDuck committed Feb 4, 2020
1 parent 924d122 commit a602772
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions WindowsGSM/GameServer/RUST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,13 @@ public async Task<Process> Start()

param += $" {additional}";

param.TrimEnd();

Process p = new Process
{
StartInfo =
{
WorkingDirectory = workingDir,
FileName = srcdsPath,
Arguments = param,
Arguments = param.TrimEnd()
},
EnableRaisingEvents = true
};
Expand Down

0 comments on commit a602772

Please sign in to comment.