Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Server/Components/Pages/GamePage.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public partial class GamePage

protected override async Task OnInitializedAsync()
{
bool userLoaded = await LoadUser();
bool userLoaded = await LoadUserAsync();
if (!userLoaded)
{
NavigationManager.NavigateTo("/");
Expand Down Expand Up @@ -54,7 +54,7 @@ protected override async Task OnInitializedAsync()
await base.OnInitializedAsync();
}

private async Task<bool> LoadUser()
private async Task<bool> LoadUserAsync()
{
var username = await ProtectedSessionStore.GetAsync<string>("username");
if (!username.Success)
Expand Down
2 changes: 1 addition & 1 deletion Server/Modules/MapGenerator/UI/MapView.razor
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@if (MapDisplayOptions.ShowPlayer && x == CharacterX && y == CharacterY)
{
<td style='background: @GetTileColor(Map.Grid[x, y]); font-size:6px;'>
@SpecialChars.Icons.Player
&#128528;
</td>
}
else if (MapDisplayOptions.TileInformationDisplay == TileInformationDisplay.Position)
Expand Down
2 changes: 1 addition & 1 deletion Server/Modules/MapGenerator/UI/Models/SpecialChars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public static class Arrows

public static class Icons
{
public const string Player = "&#128528";
public const string Player = "&#128528;";
}
}
Loading