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

Commit

Permalink
Closes #93 Maps that get deleted in the workshop now also get deleted…
Browse files Browse the repository at this point in the history
… in the database and as selected map. Takes after after saving game.ini

Closes #97 Could not crawl oculus profiles on steam! fix is not try to do that.
Closes #104 All hidden maps do now show a random mode. You need to change them to hide from hand
Closes #105 leaderboard now get the data via ajax

* Did a lot of css fixes. its now a lot more better on phones etc.
* Also did fix the problem that 0.0.4.1 and 0.0.4.2 created sry for that.
  • Loading branch information
dspitz committed Feb 26, 2022
1 parent 271812e commit 7dcca1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PavlovRconWebserver/PavlovRconWebserver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageVersion>0.0.4</PackageVersion>
<Title>PavlovRconWebserver</Title>
<Authors>Devin Spitz</Authors>
<AssemblyVersion>0.0.4.3</AssemblyVersion>
<AssemblyVersion>0.0.4.4</AssemblyVersion>
<LangVersion>9</LangVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions PavlovRconWebserver/Views/LeaderBoard/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
</tr>
</thead>
<tbody>
@if (Model != null)
@if (Model != null && Model.list != null)
{
foreach (var steamIdentity in Model.list)
var list = Model.list.ToArray();
foreach (var steamIdentity in list)
{
<tr>
<td>@steamIdentity.serverName</td>
Expand Down

0 comments on commit 7dcca1d

Please sign in to comment.