Skip to content

Commit

Permalink
convenience changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pifopi committed Sep 6, 2023
1 parent dc13f68 commit 38c99d9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions RaidCrawler.WinForms/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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");

Check warning on line 23 in RaidCrawler.WinForms/Config.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference assignment.

Check warning on line 23 in RaidCrawler.WinForms/Config.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference assignment.

Check warning on line 23 in RaidCrawler.WinForms/Config.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference assignment.
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;
Expand All @@ -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<string, string> Emoji { get; set; } = new Dictionary<string, string>
Expand Down

0 comments on commit 38c99d9

Please sign in to comment.