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,