mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 07:18:37 +00:00
Add more logic for necros/shaman for default heal thresholds due to lich and canni
This commit is contained in:
+7
-2
@@ -403,12 +403,17 @@ uint8 Client::GetDefaultSpellMaxThreshold(uint16 spell_type) {
|
||||
case BotSpellTypes::CompleteHeal:
|
||||
case BotSpellTypes::GroupCompleteHeals:
|
||||
case BotSpellTypes::PetCompleteHeals:
|
||||
return 80;
|
||||
if (client_class == Class::Necromancer || client_class == Class::Shaman) {
|
||||
return 55;
|
||||
}
|
||||
else {
|
||||
return 80;
|
||||
}
|
||||
case BotSpellTypes::GroupHoTHeals:
|
||||
case BotSpellTypes::HoTHeals:
|
||||
case BotSpellTypes::PetHoTHeals:
|
||||
if (client_class == Class::Necromancer || client_class == Class::Shaman) {
|
||||
return 60;
|
||||
return 70;
|
||||
}
|
||||
else {
|
||||
return 90;
|
||||
|
||||
Reference in New Issue
Block a user