Skip to content

Commit

Permalink
Fix locale header and required version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Jan 1, 2025
1 parent a22f814 commit 7a996f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Fika.Core/FikaPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public ManualLogSource FikaLogger
public IPAddress WanIP;
public bool LocalesLoaded;

private static readonly Version RequiredServerVersion = new("2.3.5");
private static readonly Version RequiredServerVersion = new("2.3.6");

public static DedicatedRaidWebSocketClient DedicatedRaidWebSocket { get; set; }

Expand Down Expand Up @@ -736,7 +736,7 @@ private void SetupConfig()
QuestTypesToShareAndReceive = SetupSetting(coopDefaultQuestSharingHeader, "Quest Types", EQuestSharingTypes.All,
new ConfigDescription(LocaleUtils.BEPINEX_QUEST_TYPES_D.Localized(), tags: new ConfigurationManagerAttributes()
{
Category = coopNameplatesHeader,
Category = coopQuestSharingHeader,
DispName = LocaleUtils.BEPINEX_QUEST_TYPES_T.Localized(),
Order = 4
}),
Expand All @@ -745,7 +745,7 @@ private void SetupConfig()
QuestSharingNotifications = SetupSetting(coopDefaultQuestSharingHeader, "Show Notifications", true,
new ConfigDescription(LocaleUtils.BEPINEX_QS_NOTIFICATIONS_D.Localized(), tags: new ConfigurationManagerAttributes()
{
Category = coopNameplatesHeader,
Category = coopQuestSharingHeader,
DispName = LocaleUtils.BEPINEX_QS_NOTIFICATIONS_T.Localized(),
Order = 3
}),
Expand All @@ -754,7 +754,7 @@ private void SetupConfig()
EasyKillConditions = SetupSetting(coopDefaultQuestSharingHeader, "Easy Kill Conditions", false,
new ConfigDescription(LocaleUtils.BEPINEX_EASY_KILL_CONDITIONS_D.Localized(), tags: new ConfigurationManagerAttributes()
{
Category = coopNameplatesHeader,
Category = coopQuestSharingHeader,
DispName = LocaleUtils.BEPINEX_EASY_KILL_CONDITIONS_T.Localized(),
Order = 2
}),
Expand All @@ -763,7 +763,7 @@ private void SetupConfig()
SharedKillExperience = SetupSetting(coopDefaultQuestSharingHeader, "Shared Kill Experience", false,
new ConfigDescription(LocaleUtils.BEPINEX_SHARED_KILL_XP_D.Localized(), tags: new ConfigurationManagerAttributes()
{
Category = coopNameplatesHeader,
Category = coopQuestSharingHeader,
DispName = LocaleUtils.BEPINEX_SHARED_KILL_XP_T.Localized(),
Order = 1
}),
Expand All @@ -772,7 +772,7 @@ private void SetupConfig()
SharedBossExperience = SetupSetting(coopDefaultQuestSharingHeader, "Shared Boss Experience", false,
new ConfigDescription(LocaleUtils.BEPINEX_SHARED_BOSS_XP_D.Localized(), tags: new ConfigurationManagerAttributes()
{
Category = coopNameplatesHeader,
Category = coopQuestSharingHeader,
DispName = LocaleUtils.BEPINEX_SHARED_BOSS_XP_T.Localized(),
Order = 0
}),
Expand Down

0 comments on commit 7a996f0

Please sign in to comment.