Skip to content

Commit

Permalink
feat: Added in 7_15 bool
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticwarlord86 committed Dec 17, 2024
1 parent c6bde41 commit efc83e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Memory/OffsetManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,13 @@ private static int GameVersion
public static LLogger Logger { get; } = new("LLOffsetManager", Colors.RosyBrown, LogLevel.Information);

#if RB_CN
public static bool IsChinese = true;
public static bool IsChinese = true;
public static bool Is7_1 = false;
public static bool Is7_15 = false;
#else
public static bool IsChinese = false;
public static bool Is7_1 = true;
public static bool Is7_15 = true;
#endif

#if RB_DT
Expand Down

0 comments on commit efc83e3

Please sign in to comment.