From d2f70644ef5cc168f0b0768d7671f0d56d0082a0 Mon Sep 17 00:00:00 2001 From: Toastie Date: Tue, 29 Oct 2024 23:39:30 +1300 Subject: [PATCH] Error sending greet dm will now be a warning initial canvas price down to 3 from 10, 10 is way too expensive --- src/EllieBot/Modules/Administration/GreetBye/GreetService.cs | 2 +- src/EllieBot/Modules/Games/NCanvas/NCanvasService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EllieBot/Modules/Administration/GreetBye/GreetService.cs b/src/EllieBot/Modules/Administration/GreetBye/GreetService.cs index a6ea2d4..ee51fe9 100644 --- a/src/EllieBot/Modules/Administration/GreetBye/GreetService.cs +++ b/src/EllieBot/Modules/Administration/GreetBye/GreetService.cs @@ -339,7 +339,7 @@ public class GreetService : IEService, 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/EllieBot/Modules/Games/NCanvas/NCanvasService.cs b/src/EllieBot/Modules/Games/NCanvas/NCanvasService.cs index 6605d95..2e4a57b 100644 --- a/src/EllieBot/Modules/Games/NCanvas/NCanvasService.cs +++ b/src/EllieBot/Modules/Games/NCanvas/NCanvasService.cs @@ -20,7 +20,7 @@ public sealed class NCanvasService : INCanvasService, IReadyExecutor, IEService 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,