Praytic / youtd2

Classic community-driven session-based Tower Defense game with RPG elements.
https://youtd2.com/
MIT License
92 stars 16 forks source link

Regenerating Well tower Replenish ability doesn't add any mana #436

Closed Kvel2D closed 4 months ago

Kvel2D commented 4 months ago

Supposed to add 10% of max mana.

Also, the autocast is setup weirdly. It is of type AC_TYPE_ALWAYS_BUFF, which means that it's targeted, but the actual effect is AoE and affects all towers in range.

Replenish ability also never automatically casts. This is because it has a typo and got assigned the aura bufftype. AC_TYPE_ALWAYS_BUFF will cast only if there's a target in range without the buff. Solve by changing autocast type to AC_TYPE_ALWAYS_IMMEDIATE.