Error sending greet dm will now be a warning

initial canvas price down to 3 from 10, 10 is way too expensive
This commit is contained in:
Toastie (DCS Team) 2024-10-29 23:39:30 +13:00
parent 23aabd26fa
commit d2f70644ef
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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,