From 38c99d9cd840c3ccc6232b87dc1f3d9f30c05324 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 fc49c2f..add7ee2 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"; @@ -19,13 +19,13 @@ public class ClientConfig : IDateAdvanceConfig, IWebhookConfig public bool PlaySound { get; set; } = true; 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; @@ -47,7 +47,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; } = new Dictionary