diff --git a/BetterGenshinImpact/GameTask/AutoFishing/AutoFishingTrigger.cs b/BetterGenshinImpact/GameTask/AutoFishing/AutoFishingTrigger.cs
index d09f9041..930181d6 100644
--- a/BetterGenshinImpact/GameTask/AutoFishing/AutoFishingTrigger.cs
+++ b/BetterGenshinImpact/GameTask/AutoFishing/AutoFishingTrigger.cs
@@ -988,6 +988,12 @@ namespace BetterGenshinImpact.GameTask.AutoFishing
if (!prevIsExclusive && IsExclusive)
{
_logger.LogInformation("→ {Text}", "自动钓鱼,启动!");
+ var autoThrowRodEnabled = TaskContext.Instance().Config.AutoFishingConfig.AutoThrowRodEnabled;
+ _logger.LogInformation("当前自动选饵抛竿状态[{Enabled}]", autoThrowRodEnabled.ToChinese());
+ if (autoThrowRodEnabled)
+ {
+ _logger.LogInformation("枫丹、须弥地区暂不支持自动抛竿,如果在这两个地区钓鱼请关闭自动抛竿功能");
+ }
_switchBaitContinuouslyFrameNum = 0;
_waitBiteContinuouslyFrameNum = 0;
_noFishActionContinuouslyFrameNum = 0;
diff --git a/BetterGenshinImpact/Helpers/Extensions/BooleanExtension.cs b/BetterGenshinImpact/Helpers/Extensions/BooleanExtension.cs
new file mode 100644
index 00000000..c2a05dca
--- /dev/null
+++ b/BetterGenshinImpact/Helpers/Extensions/BooleanExtension.cs
@@ -0,0 +1,9 @@
+namespace BetterGenshinImpact.Helpers.Extensions;
+
+public static class BooleanExtension
+{
+ public static string ToChinese(this bool enabled)
+ {
+ return enabled ? "开启" : "关闭";
+ }
+}
\ No newline at end of file
diff --git a/BetterGenshinImpact/View/Pages/HomePage.xaml b/BetterGenshinImpact/View/Pages/HomePage.xaml
index 30e4bd28..4617e0ad 100644
--- a/BetterGenshinImpact/View/Pages/HomePage.xaml
+++ b/BetterGenshinImpact/View/Pages/HomePage.xaml
@@ -52,7 +52,7 @@
- 点击查看教程
+ 点击查看文档与教程
@@ -178,7 +178,7 @@
+ Text="轻松解除冻结,由于在水下存在长按的空格的场景,所以不推荐启用" />
+ Text="快速拾取大量掉落物,有自动拾取的功能下,就显得比较鸡肋了" />
+ Text="快速跳过强化结果展示,需要配置快捷键进行触发(请不要长按)" />