Skip to content

Commit a0d326f

Browse files
committed
fix after start adventure click on switch village cause method not allowed
1 parent 3164bc6 commit a0d326f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

TbsCore/Tasks/Others/StartAdventure.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ public override async Task<TaskRes> Execute(Account acc)
6464
break;
6565
}
6666

67+
if (DateTime.Now.Millisecond % 2 == 0)
68+
{
69+
await NavigationHelper.ToDorf1(acc);
70+
}
71+
else
72+
{
73+
await NavigationHelper.ToDorf2(acc);
74+
}
75+
6776
return TaskRes.Executed;
6877
}
6978
}

0 commit comments

Comments
 (0)