change: Error sending greet dm will now be a warning

change: initial canvas price down to 3 from 10, 10 is way too expensive
This commit is contained in:
Kwoth
2024-10-29 01:53:42 +00:00
parent 1dcd158f43
commit df5eced904
2 changed files with 2 additions and 2 deletions

View File

@@ -339,7 +339,7 @@ public class GreetService : INService, IReadyExecutor
} }
catch (Exception ex) 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; return false;
} }

View File

@@ -20,7 +20,7 @@ public sealed class NCanvasService : INCanvasService, IReadyExecutor, INService
public const int CANVAS_WIDTH = 500; public const int CANVAS_WIDTH = 500;
public const int CANVAS_HEIGHT = 350; public const int CANVAS_HEIGHT = 350;
public const int INITIAL_PRICE = 10; public const int INITIAL_PRICE = 3;
public NCanvasService( public NCanvasService(
DbService db, DbService db,