Fix log spam v0.10
authorLiza Carvelli <liza@carvel.li>
Tue, 11 Jun 2024 21:15:25 +0000 (23:15 +0200)
committerLiza Carvelli <liza@carvel.li>
Tue, 11 Jun 2024 21:15:25 +0000 (23:15 +0200)
Questionable/Controller/QuestController.cs
Questionable/Questionable.csproj

index a47aee57e2885ed6cf27dfc3f502f68a3bfa6ecb..4cb5be17177c5cb8de747806477d152ab405ec23 100644 (file)
@@ -268,7 +268,7 @@ internal sealed class QuestController
             if (CurrentQuest?.Step is >= 0 and < 255)
                 ExecuteNextStep(true);
         }
-        else
+        else if (_automatic)
         {
             _logger.LogInformation("Stopping automatic questing");
             _automatic = false;
index dc5c89b7fe000e291f2d18c7a6b417e188c0e654..2b09bd09b3ab1ad567f4e94f8490893e4490a6d2 100644 (file)
@@ -1,7 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
     <PropertyGroup>
         <TargetFramework>net8.0-windows</TargetFramework>
-        <Version>0.9</Version>
+        <Version>0.10</Version>
         <LangVersion>12</LangVersion>
         <Nullable>enable</Nullable>
         <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>