mirror of
https://github.com/babalae/bettergi-scripts-list.git
synced 2026-03-15 03:23:22 +08:00
AutoFishingTeyvat - 2.4.5 (#2931)
* AutoFishingTeyvat - 2.4.5 * Add files via upload
This commit is contained in:
@@ -508,13 +508,13 @@
|
||||
|
||||
// 读取地区
|
||||
// let path_sort_area = typeof(settings.path_sort_area) === 'undefined' || settings.path_sort_area === "" ? [] : settings.path_sort_area.split(' ');
|
||||
let path_sort_area = Array.from(settings.path_sort_area);
|
||||
let path_sort_area = settings.path_sort_area ? Array.from(settings.path_sort_area) : [] ;
|
||||
// 读取鱼类
|
||||
// let path_sort_fish = typeof(settings.path_sort_fish) === 'undefined' || settings.path_sort_fish === "" ? [] : settings.path_sort_fish.split(' ');
|
||||
let path_sort_fish = Array.from(settings.path_sort_fish);
|
||||
let path_sort_fish = settings.path_sort_fish ? Array.from(settings.path_sort_fish) : [] ;
|
||||
// 读取鱼饵
|
||||
// let path_sort_bait = typeof(settings.path_sort_bait) === 'undefined' || settings.path_sort_bait === "" ? [] : settings.path_sort_bait.split(' ');
|
||||
let path_sort_bait = Array.from(settings.path_sort_bait);
|
||||
let path_sort_bait = settings.path_sort_bait ? Array.from(settings.path_sort_bait) : [] ;
|
||||
// 读取兑换材料
|
||||
let path_sort_material = typeof(settings.path_sort_material) === 'undefined' ? "无(默认)" : settings.path_sort_material;
|
||||
// 读取调试信息
|
||||
@@ -981,7 +981,7 @@
|
||||
// 判断是否是调式模式
|
||||
const is_con = !(typeof(settings.path_select) === 'undefined' || settings.path_select === "无(默认)");
|
||||
// 读取开发者日志设置
|
||||
const developer_log = Array.from(settings.developer_log);
|
||||
const developer_log = settings.developer_log ? Array.from(settings.developer_log) : [];
|
||||
// 键鼠设置读取
|
||||
const block_gcm = typeof(settings.block_gcm) === 'undefined' ? false : settings.block_gcm;
|
||||
// 战斗设置读取
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "提瓦特自动钓鱼(全流程+自选)",
|
||||
"version": "2.4.4",
|
||||
"version": "2.4.5",
|
||||
"bgi_version": "0.55.0",
|
||||
"description": "支持自动追踪并垂钓bgi支持的全提瓦特垂钓点",
|
||||
"authors": [
|
||||
|
||||
Reference in New Issue
Block a user