From 33979f2c96f3cda3a8bbfe5059813544dca3a072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Mon, 16 Jan 2023 16:23:38 +0100 Subject: [PATCH] convenience changes --- RaidCrawler.WinForms/Config.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/RaidCrawler.WinForms/Config.cs b/RaidCrawler.WinForms/Config.cs index 0a065ff..c6c8b6c 100644 --- a/RaidCrawler.WinForms/Config.cs +++ b/RaidCrawler.WinForms/Config.cs @@ -6,7 +6,7 @@ namespace RaidCrawler.WinForms public class ClientConfig : IDateAdvanceConfig, IWebhookConfig { // General - public string IP { get; set; } = "192.168.0.0"; + public string IP { get; set; } = "192.168.1.65"; public int UsbPort { get; set; } = 0; public SwitchProtocol Protocol { get; set; } = SwitchProtocol.WiFi; public string Game { get; set; } = "Scarlet"; @@ -22,13 +22,13 @@ public class ClientConfig : IDateAdvanceConfig, IWebhookConfig public bool EnableAlertWindow { get; set; } = true; public string AlertWindowMessage { get; set; } = "Match found! Hold Shift and click one of the arrow keys to jump to the matching result."; - public bool EnableNotification { get; set; } = false; - public string DiscordWebhook { get; set; } = string.Empty; - public string DiscordMessageContent { get; set; } = string.Empty; + public bool EnableNotification { get; set; } = true; + public string DiscordWebhook { get; set; } = Environment.GetEnvironmentVariable("DISCORD_WEBHOOK_RAID_CRAWLER"); + public string DiscordMessageContent { get; set; } = "<@282197676982927375> A raid was found"; // Date Advance - public bool UseTouch { get; set; } = false; - public bool UseOvershoot { get; set; } = false; + public bool UseTouch { get; set; } = true; + public bool UseOvershoot { get; set; } = true; public bool DodgeSystemUpdate { get; set; } = false; public bool SaveOnMatch { get; set; } = true; public bool UseSetStick { get; set; } = false; @@ -54,7 +54,7 @@ public class ClientConfig : IDateAdvanceConfig, IWebhookConfig // Webhook public bool EnableEmoji { get; set; } = true; public bool VerboseIVs { get; set; } = false; - public int IVsStyle { get; set; } = 0; + public int IVsStyle { get; set; } = 1; public string IVsSpacer { get; set; } = " "; public bool ToggleDen { get; set; } = true; public Dictionary Emoji { get; set; } =