Set lower limit of spell delays to 100 rather than 1

This commit is contained in:
nytmyr
2025-01-31 14:45:00 -06:00
parent 939e5ea38e
commit 2211e125d8
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -375,7 +375,7 @@ uint16 Client::GetDefaultSpellDelay(uint16 spell_type, uint8 stance) {
case BotSpellTypes::PetCures:
return 5000;
default:
return 1;
return 100;
}
}