From df5eced9046d6c86aff3c211d2216afccbc5aaae Mon Sep 17 00:00:00 2001 From: Kwoth Date: Tue, 29 Oct 2024 01:53:42 +0000 Subject: [PATCH] change: Error sending greet dm will now be a warning change: initial canvas price down to 3 from 10, 10 is way too expensive --- src/NadekoBot/Modules/Administration/GreetBye/GreetService.cs | 2 +- src/NadekoBot/Modules/Games/NCanvas/NCanvasService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/GreetBye/GreetService.cs b/src/NadekoBot/Modules/Administration/GreetBye/GreetService.cs index 541a0ea10..3d42d6f43 100644 --- a/src/NadekoBot/Modules/Administration/GreetBye/GreetService.cs +++ b/src/NadekoBot/Modules/Administration/GreetBye/GreetService.cs @@ -339,7 +339,7 @@ public class GreetService : INService, IReadyExecutor } catch (Exception ex) { - Log.Error(ex, "Error sending greet dm"); + Log.Warning(ex, "Unable to send Greet DM. Probably the user has closed DMs"); return false; } diff --git a/src/NadekoBot/Modules/Games/NCanvas/NCanvasService.cs b/src/NadekoBot/Modules/Games/NCanvas/NCanvasService.cs index 51fa19261..01ac65550 100644 --- a/src/NadekoBot/Modules/Games/NCanvas/NCanvasService.cs +++ b/src/NadekoBot/Modules/Games/NCanvas/NCanvasService.cs @@ -20,7 +20,7 @@ public sealed class NCanvasService : INCanvasService, IReadyExecutor, INService public const int CANVAS_WIDTH = 500; public const int CANVAS_HEIGHT = 350; - public const int INITIAL_PRICE = 10; + public const int INITIAL_PRICE = 3; public NCanvasService( DbService db,