Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] mass healing area #52

Merged
merged 2 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions data/scripts/lib/register_spells.lua
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,18 @@ AREA_CIRCLE3X33 = {
{ 1, 1, 1, 1, 1, 1, 1 },
}

AREA_CIRCLE3X4 = {
{ 0, 0, 0, 1, 1, 1, 0, 0, 0 },
{ 0, 0, 1, 1, 1, 1, 1, 0, 0 },
{ 0, 1, 1, 1, 1, 1, 1, 1, 0 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 1, 1, 1, 1, 3, 1, 1, 1, 1 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 0, 1, 1, 1, 1, 1, 1, 1, 0 },
{ 0, 0, 1, 1, 1, 1, 1, 0, 0 },
{ 0, 0, 0, 1, 1, 1, 0, 0, 0 },
}

-- Crosses
AREA_CIRCLE1X1 = {
{ 0, 1, 0 },
Expand Down
2 changes: 1 addition & 1 deletion data/scripts/spells/healing/mass_healing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ local function createCombat(area, combatFunc)
end

local combat = createCombat(AREA_CIRCLE3X3, "onTargetCreature")
local combatWOD = createCombat(AREA_CIRCLE5X5, "onTargetCreatureWOD")
local combatWOD = createCombat(AREA_CIRCLE3X4, "onTargetCreatureWOD")

local spell = Spell("instant")

Expand Down
316 changes: 0 additions & 316 deletions markdowns/CHANGELOG.md

This file was deleted.