We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776ebc8 commit dc68be7Copy full SHA for dc68be7
mod/WorldLink/FutariPatch.cs
@@ -87,12 +87,8 @@ public static bool CheckAuth_Proc()
87
if (isInit) return PrefixRet.RUN_ORIGINAL;
88
Log.Info("CheckAuth_Proc");
89
90
- var keychip = AMDaemon.System.KeychipId.ShortValue;
91
- Log.Info($"Keychip ID: {keychip}");
92
- if (string.IsNullOrEmpty(keychip)) Log.Error("Keychip ID is empty. WorldLink will not work.");
93
-
94
// Randomize keychip
95
- keychip = "W9" + new System.Random().Next(100000000, 999999999);
+ var keychip = "W9" + new System.Random().Next(100000000, 999999999);
96
97
// Wait until the client is initialized
98
new System.Threading.Thread(() =>
0 commit comments