Skip to content

Commit

Permalink
Lua code format - (Stylua)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 18, 2023
1 parent 82e4064 commit 9e2fd43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-otservbr-global/scripts/spells/attack/divine_grenade.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function onGetFormulaValues(player, level, maglevel)

local multiplier = 1.0
if grade ~= WHEEL_GRADE_NONE then
local multiplierByGrade = {1.3, 1.6, 2.0}
local multiplierByGrade = { 1.3, 1.6, 2.0 }
multiplier = multiplierByGrade[grade]
end

Expand Down Expand Up @@ -68,7 +68,7 @@ function spell.onCastSpell(creature, var)
return false
end

local cooldownByGrade= {26, 20, 14}
local cooldownByGrade = { 26, 20, 14 }
local cooldown = cooldownByGrade[grade]

var.instantName = "Divine Grenade Cast"
Expand Down

0 comments on commit 9e2fd43

Please sign in to comment.