mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
[Spells] Implemented SPA 390 SE_FcTimerLockout (#1496)
* Implemented SPA 390 SE_FcTimerLockout Implemented SPA 390 SE_FcTimerLockout This focus limited effect sets any spell that meets the criteria of the of the focus limits to be a on recast timer. Base value: recast duration in milliseconds. Note: This focus can only be applied from spells (not item or AA) Note: Although reinforced by the server, to appear visually correct both server side and client side spell values need to match (ie. need to matching spells_new values). Example spell: Suppression of Fire ID 16973. Sets any fire spell in the clients spell bar to a 2 second recast when the client is affect by the spell. * Formatting * Use range based for Co-authored-by: Akkadius <akkadius1@gmail.com>
This commit is contained in:
@@ -4007,6 +4007,8 @@ uint8 Mob::IsFocusEffect(uint16 spell_id,int effect_index, bool AA,uint32 aa_eff
|
||||
return focusFcMute;
|
||||
case SE_FcTimerRefresh:
|
||||
return focusFcTimerRefresh;
|
||||
case SE_FcTimerLockout:
|
||||
return focusFcTimerLockout;
|
||||
case SE_Fc_Cast_Spell_On_Land:
|
||||
return focusFcCastSpellOnLand;
|
||||
case SE_FcStunTimeMod:
|
||||
|
||||
Reference in New Issue
Block a user