Skip to content

Commit

Permalink
Rename property
Browse files Browse the repository at this point in the history
  • Loading branch information
C1rdec committed Dec 3, 2024
1 parent 17479d2 commit e4a5d9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PoeLurker.Core/ClientLurker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ private void OnFileChanged(string newline)
var generatingLevelEvent = GeneratingLevelEvent.TryParse(newline);
if (generatingLevelEvent != null)
{
Models.PoeApplicationContext.IsPoe2 = true;
Models.PoeApplicationContext.Poe2 = true;
GeneratingLevel?.Invoke(this, generatingLevelEvent);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/PoeLurker.Core/Models/PoeApplicationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class PoeApplicationContext
/// <summary>
/// Gets or sets a value indicating Poe 2 is running.
/// </summary>
public static bool IsPoe2 { get; set; }
public static bool Poe2 { get; set; }

/// <summary>
/// Gets or sets a value indicating whether this instance is running.
Expand Down

0 comments on commit e4a5d9e

Please sign in to comment.