diff --git a/apps/backend/Jobs/Character/CharacterJob.cs b/apps/backend/Jobs/Character/CharacterJob.cs index 82d6be065..dd8510b19 100644 --- a/apps/backend/Jobs/Character/CharacterJob.cs +++ b/apps/backend/Jobs/Character/CharacterJob.cs @@ -29,7 +29,7 @@ public override async Task Run(string[] data) await Context.PlayerCharacter .Where(c => c.Id == _query.CharacterId) .ExecuteUpdateAsync(s => s - .SetProperty(pc => pc.ShouldUpdate, pc => false), + .SetProperty(pc => pc.ShouldUpdate, false), CancellationToken ); return; @@ -62,7 +62,7 @@ await Context.PlayerCharacter await Context.PlayerCharacter .Where(c => c.Id == _query.CharacterId) .ExecuteUpdateAsync(s => s - .SetProperty(pc => pc.ShouldUpdate, pc => false), + .SetProperty(pc => pc.ShouldUpdate, false), CancellationToken ); }