Fix log spam

arr-p5 v0.10
Liza 2024-06-11 23:15:25 +02:00
parent 2327426ae5
commit 1356818abe
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ internal sealed class QuestController
if (CurrentQuest?.Step is >= 0 and < 255) if (CurrentQuest?.Step is >= 0 and < 255)
ExecuteNextStep(true); ExecuteNextStep(true);
} }
else else if (_automatic)
{ {
_logger.LogInformation("Stopping automatic questing"); _logger.LogInformation("Stopping automatic questing");
_automatic = false; _automatic = false;

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework> <TargetFramework>net8.0-windows</TargetFramework>
<Version>0.9</Version> <Version>0.10</Version>
<LangVersion>12</LangVersion> <LangVersion>12</LangVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>