Skip to content

Commit

Permalink
6.4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pik-4 committed Sep 25, 2024
1 parent accd6e7 commit c9ecaf9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions HsMod/Patcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ public static void PatchPostConfigFileLoad(ref string path,

__instance.Set("Aurora.VerifyWebCredentials", __state);
if (__state.Substring(0, 2).ToLower() == "cn")
__instance.Set("Aurora.Env", "cn.actual.battlenet.com.cn");
else
__instance.Set("Aurora.Env", "cn.actual.battlenet.com.cn");
else
__instance.Set("Aurora.Env", __state.Substring(0, 2).ToLower() + ".actual.battle.net");
}

Expand Down
2 changes: 1 addition & 1 deletion HsMod/PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ internal class PluginInfo
public const string PLUGIN_GUID = "HsMod";
public const string PLUGIN_NAME = "HsMod";
public const string PLUGIN_AUTHOR = "Pik_4";
public const string PLUGIN_VERSION = "6.4.0.0";
public const string PLUGIN_VERSION = "6.4.0.1";
}
}
4 changes: 3 additions & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Version = 3
VerifyWebCredentials = "VerifyWebCredentials"
ClientCheck = 0
Env.Override = 1
Env = cn.actual.battle.net
Env = us.actual.battle.net
```

一些token获取链接
Expand All @@ -245,6 +245,8 @@ https://eu.battle.net/login/en/?app=wtcg

在启用插件后,支持`./Hearthstone.exe VerifyWebCredentials` 命令启动炉石(~~但需要有client.config文件~~,现在不需要了!)。

注意:中国的`Env`参数为`cn.actual.battlenet.com.cn`

### TODO

1. 整理ReadMe,更新Wiki等;整理配置与Patch之间关系;多语言支持
Expand Down

0 comments on commit c9ecaf9

Please sign in to comment.