Skip to content

Commit

Permalink
Fix 'Download Profile' button
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Jul 7, 2024
1 parent 1a133c0 commit 6e29916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Fika.Core/FikaPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace Fika.Core
/// Originally by: Paulov <br/>
/// Re-written by: Lacyway
/// </summary>
[BepInPlugin("com.fika.core", "Fika.Core", "0.9.8953")]
[BepInPlugin("com.fika.core", "Fika.Core", "0.9.8954")]
[BepInProcess("EscapeFromTarkov.exe")]
[BepInDependency("com.SPT.custom", BepInDependency.DependencyFlags.HardDependency)] // This is used so that we guarantee to load after spt-custom, that way we can disable its patches
[BepInDependency("com.SPT.singleplayer", BepInDependency.DependencyFlags.HardDependency)] // This is used so that we guarantee to load after spt-singleplayer, that way we can disable its patches
Expand Down
1 change: 1 addition & 0 deletions Fika.Core/UI/Patches/MenuTaskBar_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public static void Postfix(MenuTaskBar __instance)
if (text != null)
{
text.method_2("DOWNLOAD PROFILE");
text.LocalizationKey = "";
}

AnimatedToggle animatedToggle = downloadProfileGameObject.GetComponentInChildren<AnimatedToggle>();
Expand Down

0 comments on commit 6e29916

Please sign in to comment.