过期提醒
jovechina opened this issue · 2 comments
DBM-Core 更新到8.3.6后出现此提醒。
看了一下似乎是把Voicepack的版本提到了11。不知道是不是添加了新的语音条目,敲碗等更新。
function DBM:CheckVoicePackVersion(value)
local activeVP = self.Options.ChosenVoicePack
--Check if voice pack out of date
if activeVP ~= "None" and activeVP == value then
if self.VoiceVersions[value] < 11 then--Version will be bumped when new voice packs released that contain new voices.
if self.Options.ShowReminders then
self:AddMsg(L.VOICE_PACK_OUTDATED)
end
SWFilterDisabed = self.VoiceVersions[value]--Set disable to version on current voice pack
else
SWFilterDisabed = 11
end
end
end