The array is returnig incomplete when recevei a (0 zero) value
[spelldata] => Array
(
[spell] => Array
(
[trigger] => 1
[desc] => Array
(
[0] => For the next 20 sec, your direct heals grant Fecundity to your target, increasing the healing received by the target by up to 30. Fecundity lasts 10 sec and stacks up to 5 times.
[1] => Increases healing done by spells and effects by up to 73.
)
)
)
the correct should be
[spelldata] => Array
(
[spell] => Array
(
[trigger] => Array
(
[0] => 0,
[1] => 1,
)
[desc] => Array
(
[0] => For the next 20 sec, your direct heals grant Fecundity to your target, increasing the healing received by the target by up to 30. Fecundity lasts 10 sec and stacks up to 5 times.
[1] => Increases healing done by spells and effects by up to 73.
)
)
)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The array is returnig incomplete when recevei a (0 zero) value
[spelldata] => Array
(
[spell] => Array
(
[trigger] => 1
[desc] => Array
(
[0] => For the next 20 sec, your direct heals grant Fecundity to your target, increasing the healing received by the target by up to 30. Fecundity lasts 10 sec and stacks up to 5 times.
[1] => Increases healing done by spells and effects by up to 73.
)
)
)
the correct should be
[spelldata] => Array
(
[spell] => Array
(
[trigger] => Array
(
[0] => 0,
[1] => 1,
)
[desc] => Array
(
[0] => For the next 20 sec, your direct heals grant Fecundity to your target, increasing the healing received by the target by up to 30. Fecundity lasts 10 sec and stacks up to 5 times.
[1] => Increases healing done by spells and effects by up to 73.
)
)
)