Skip to content

Commit 67da1ad

Browse files
committed
Merge branch 'release/0.0.20'
2 parents e5a963a + 5f6e4b8 commit 67da1ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Solution settings -->
4-
<Version>0.0.19</Version>
4+
<Version>0.0.20</Version>
55
<LangVersion>latest</LangVersion>
66
<TargetFramework>net9.0</TargetFramework>
77
<ImplicitUsings>enable</ImplicitUsings>

src/Borealis.Core/Services/PlayerService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public async Task<Result<Player>> SynchronizePlayerAsync(int whiteoutSurvivalPla
122122
}
123123

124124
if(existingPlayer.State != externalPlayer.State) {
125-
await _discordBotService.SendPlayerChangedStateMessageAsync(existingPlayer, existingPlayer.State, externalPlayer.State, cancellationToken);
125+
await _discordBotService.SendPlayerChangedStateMessageAsync(existingPlayer, externalPlayer.State, existingPlayer.State, cancellationToken);
126126

127127
existingPlayer.PreviousStates.Add(new PlayerStateHistoryEntry {
128128
State = existingPlayer.State,

0 commit comments

Comments
 (0)