mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
Small fix
This commit is contained in:
parent
59fb246652
commit
54c1585cdf
3 changed files with 17 additions and 16 deletions
|
|
@ -18896,11 +18896,11 @@ void Player::InitRunes()
|
|||
|
||||
for(uint32 i = 0; i < MAX_RUNES; ++i)
|
||||
{
|
||||
SetBaseRune(i, i / 2);
|
||||
SetCurrentRune(i, i / 2);
|
||||
SetRuneCooldown(i, 0);
|
||||
SetBaseRune(i, i / 2); // init base types
|
||||
SetCurrentRune(i, i / 2); // init current types
|
||||
SetRuneCooldown(i, 0); // reset cooldowns
|
||||
}
|
||||
|
||||
for(uint32 i = 0; i < NUM_RUNES; ++i)
|
||||
for(uint32 i = 0; i < NUM_RUNE_TYPES; ++i)
|
||||
SetFloatValue(PLAYER_RUNE_REGEN_1 + i, 0.1f);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue