修复猎人野兽训练展示技能所需训练点数错误问题

修复拾取问题
修复其他已知问题
修复自动下马问题以及带来的猎人守护自动关闭问题
彻底修复拾取界面问题
修复目标框架的施法条监控
修复其他已知问题
调整dps插件对仇恨的估算方式
优化dps插件
修复远程攻击条问题
This commit is contained in:
rucky
2026-03-25 00:56:49 +08:00
parent c0f1ecc713
commit c7dd0f4848
9 changed files with 393 additions and 266 deletions

View File

@@ -509,7 +509,6 @@ local function EnsureDB()
if type(SFramesDB.Tweaks) ~= "table" then SFramesDB.Tweaks = {} end
if SFramesDB.Tweaks.autoStance == nil then SFramesDB.Tweaks.autoStance = true end
if SFramesDB.Tweaks.autoDismount == nil then SFramesDB.Tweaks.autoDismount = true end
if SFramesDB.Tweaks.superWoW == nil then SFramesDB.Tweaks.superWoW = true end
if SFramesDB.Tweaks.turtleCompat == nil then SFramesDB.Tweaks.turtleCompat = true end
if SFramesDB.Tweaks.cooldownNumbers == nil then SFramesDB.Tweaks.cooldownNumbers = true end
@@ -1090,14 +1089,7 @@ function SFrames.ConfigUI:BuildUIPage()
CreateDesc(tweaksSection, "施法需要特定姿态时自动切换(如人形按熊掌→自动变熊)", 36, -50, font, 218)
table.insert(controls, CreateCheckBox(tweaksSection,
"自动取消变形/下马", 270, -34,
function() return SFramesDB.Tweaks.autoDismount ~= false end,
function(checked) SFramesDB.Tweaks.autoDismount = checked end
))
CreateDesc(tweaksSection, "变形/骑马时施法自动取消(如熊形按治疗→自动回人形)", 292, -50, font, 218)
table.insert(controls, CreateCheckBox(tweaksSection,
"乌龟服兼容修改", 14, -80,
"乌龟服兼容修改", 270, -34,
function() return SFramesDB.Tweaks.turtleCompat ~= false end,
function(checked) SFramesDB.Tweaks.turtleCompat = checked end
))