Files
better-genshin-impact/BetterGenshinImpact/GameTask/Common/Exceptions/PartySetupFailedException.cs
秋云 4932c52af9 fix: remove while loop in TpTask (#1221)
* fix: prevent infinite loop in TpTask.cs

* fix: prevent redundant zoom operation

* fix: handle party switching failures in PathExecutor; add pre-switch check for switch party task

* fix: typos.
2025-02-28 10:00:59 +08:00

3 lines
145 B
C#

namespace BetterGenshinImpact.GameTask.Common.Exceptions;
public class PartySetupFailedException(string message) : System.Exception(message);