Core/Spells: Rename confusing SpellState enum values

Port From (https://github.com/TrinityCore/TrinityCore/commit/2e79d3524f12a525c337c5ce8d84b793cacd6e91)
This commit is contained in:
Hondacrx
2025-08-11 19:52:08 -04:00
parent ceb78e5914
commit 2c9db326f6
7 changed files with 31 additions and 36 deletions
@@ -431,12 +431,12 @@ namespace Framework.Constants
public enum SpellState
{
None = 0,
Null = 0,
Preparing = 1,
Casting = 2,
Finished = 3,
Idle = 4,
Delayed = 5
Launched = 2,
Channeling = 3,
Finished = 4,
Idle = 5
}
public enum SpellSchools