change server b identity

This commit is contained in:
ema
2024-08-04 15:15:34 +08:00
parent 4610c9e7ca
commit a1c5c25623
2 changed files with 4 additions and 4 deletions

View File

@@ -424,8 +424,8 @@ public partial class AutoWoodTask
#if !TEST_WITHOUT_Z_ITEM
throw new NormalEndException("请先装备小道具「王树瑞佑」!");
#else
Thread.Sleep(2000);
Simulation.SendInputEx.Keyboard.KeyPress(_zKey);
System.Threading.Thread.Sleep(2000);
Simulation.SendInput.Keyboard.KeyPress(_zKey);
Debug.WriteLine("[AutoWood] Z");
_first = false;
#endif
@@ -449,7 +449,7 @@ public partial class AutoWoodTask
#if !TEST_WITHOUT_Z_ITEM
throw new RetryException("未找到「王树瑞佑」");
#else
Thread.Sleep(15000);
System.Threading.Thread.Sleep(15000);
#endif
}

View File

@@ -54,7 +54,7 @@ internal sealed class Login3rdParty
foreach (string line in lines)
{
string kv = line.Trim();
if (kv.StartsWith("cps=") && kv.EndsWith("bilibili"))
if (kv.StartsWith("channel=") && kv.EndsWith("14"))
{
Type = The3rdPartyType.Bilibili;
break;