Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Nov 14, 2022

Partially verified

This commit is signed with the committer’s verified signature.
Tofel’s contribution has been verified via SSH key.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
1 parent e51d281 commit 48ff02e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MHFZ_Overlay/addresses/AddressModel.cs
Original file line number Diff line number Diff line change
@@ -689,7 +689,7 @@ public static bool ShowMonsterEHP()
return false;
}

public static bool ShowCaravanScore()
public bool ShowCaravanScore()
{
Settings s = (Settings)Application.Current.TryFindResource("Settings");
if (s.EnableCaravanScore)
@@ -737,7 +737,7 @@ public bool ShowHPBar(int monsterId, int monsterHp)
return null;
}

public static bool CaravanOverride()
public bool CaravanOverride()
{
Settings s = (Settings)Application.Current.TryFindResource("Settings");
if (s.EnableCaravanOverride)
@@ -1830,7 +1830,7 @@ public static string GetTimerMode()
else return "Time Left";
}

public static string GetRoadTimerResetMode()
public string GetRoadTimerResetMode()
{
Settings s = (Settings)Application.Current.TryFindResource("Settings");
if (s.DiscordRoadTimerReset == "Never")
@@ -2121,7 +2121,7 @@ public string AtkMult
/// <param name="monsterhp">The monsterhp.</param>
/// <param name="monsterdefrate">The monsterdefrate.</param>
/// <returns></returns>
public static int DisplayMonsterEHP(decimal? defrate, int monsterhp, decimal? monsterdefrate)
public int DisplayMonsterEHP(decimal? defrate, int monsterhp, decimal? monsterdefrate)
{
if (defrate > 0)
{

0 comments on commit 48ff02e

Please sign in to comment.