Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Yee-yee
Browse files Browse the repository at this point in the history
  • Loading branch information
misandrie committed May 14, 2024
1 parent 839117d commit 1f507fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Marsey.IPC/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public string ConnRecv(string name)
pipeClient.Connect();

using StreamReader reader = new StreamReader(pipeClient);
string serialized = reader.ReadToEnd();
return serialized;
return reader.ReadToEnd();
}
}
2 changes: 1 addition & 1 deletion SS14.Launcher/Models/Connector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ private void ConfigureMarsey()
{
{ "MARSEY_LOADER_DEBUG", _cfg.GetCVar(CVars.LogLoaderDebug) ? "true" : null },
{ "MARSEY_LOGGING", _cfg.GetCVar(CVars.LogPatcher) ? "true" : null },
{ "MARSEY_SEPARATE_LOGGER", MarseyConf.SeparateLogger ? "true" : null },
{ "MARSEY_SEPARATE_LOGGER", _cfg.GetCVar(CVars.LogPatcher) ? "true" : null },
{ "MARSEY_THROW_FAIL", _cfg.GetCVar(CVars.ThrowPatchFail) ? "true" : null },
{ "MARSEY_HIDE_LEVEL", $"{_cfg.GetCVar(CVars.MarseyHide)}" },
{ "MARSEY_JAMMER", _cfg.GetCVar(CVars.JamDials) ? "true" : null },
Expand Down

0 comments on commit 1f507fd

Please sign in to comment.