I am trying to edit the shape of the Eternal Winter spell to a diamond shape. Anytime I use this specific area the animation doesnt play on all cells it should. But if I cast the spell and then have the player move while the spell is active the animation starts to play on the other cells.
Note: I tried CONST_ME_GROUNDSHAKER effect seems like it doesnt have the same problem. Is there a way I can edit how these effects fire ?

This is the area I am using:
What I want to achieve beside this issue, is I want to be able to control when the cells in my area start and stop, but so far all I did is change the area cell values and this is the result
Any help is appreciated
Note: I tried CONST_ME_GROUNDSHAKER effect seems like it doesnt have the same problem. Is there a way I can edit how these effects fire ?

This is the area I am using:
Code:
AREA_DIAMOND = {
{0, 0, 0, 1, 0, 0, 0},
{0, 0, 1, 1, 1, 0, 0},
{0, 1, 0, 1, 0, 1, 0},
{1, 0, 1, 3, 1, 0, 1},
{0, 1, 0, 1, 0, 1, 0},
{0, 0, 1, 0, 1, 0, 0},
{0, 0, 0, 1, 0, 0, 0},
}
What I want to achieve beside this issue, is I want to be able to control when the cells in my area start and stop, but so far all I did is change the area cell values and this is the result
Any help is appreciated