Skip to content

Commit

Permalink
Fixed incorrect workshop hiding
Browse files Browse the repository at this point in the history
  • Loading branch information
AtiLion committed Nov 2, 2018
1 parent b262601 commit e96c2a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CopiedLobbyMess/CopiedLobbyMess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private void ModifyLobbyInfo()
",",
Configuration.Instance.CameraMode,
",",
workshop ? "WSn" : "WSy",
workshop ? "WSy" : "WSn",
",",
Configuration.Instance.GoldOnly ? "GLD" : "F2P",
",",
Expand Down
5 changes: 2 additions & 3 deletions CopiedLobbyMess/CopiedLobbyMess.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Unity\Editor\stm\steamapps\common\Unturned\Unturned_Data\Managed\Assembly-CSharp.dll</HintPath>
<Reference Include="Assembly-CSharp">
<HintPath>..\Libraries\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp-firstpass">
<HintPath>..\Libraries\Assembly-CSharp-firstpass.dll</HintPath>
Expand Down

1 comment on commit e96c2a0

@Cubody
Copy link

@Cubody Cubody commented on e96c2a0 Jun 1, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not working ((

Please sign in to comment.