【战斗】删除战斗艺术字配置,改为即时判断

dev_chengFeng
gaoxin 2020-11-13 19:44:55 +08:00
parent 142d8dee0f
commit 4fd822a333
1 changed files with 2 additions and 5 deletions

View File

@ -925,13 +925,10 @@ function this.GetCombatIdBySkin(skillId, skinId)
end
--+++++++++++++++++++++++++++++++++++++++++++
local _BattleArtFontConfig = {
[BattleArtFontType.Immune] = {type = 2, content = Language[12391]}
}
function this.GetArtFontConfig(_ArtFontType)
if _BattleArtFontConfig[_ArtFontType] then
return _BattleArtFontConfig[_ArtFontType]
if _ArtFontType == BattleArtFontType.Immune then
return {type = 2, content = Language[12391]}
end
end