DB/SAI: Remove SMARTCAST_INTERRUPT_PREVIOUS from Invoker Cast, Cross Cast and Self Cast actions

Ref aae38bec11

Not needed at all for these action types, you can't interrupt player's spells by this event flag and there's no reason to interrupt creature's spells

(cherry picked from commit e931bc11c2)
This commit is contained in:
offl
2020-08-22 03:48:48 +03:00
committed by Shauren
parent 0715168bce
commit 1f1583142e

View File

@@ -0,0 +1,2 @@
-- Remove SMARTCAST_INTERRUPT_PREVIOUS from Invoker Cast, Cross Cast and Self Cast actions
UPDATE `smart_scripts` SET `action_param2` = `action_param2` &~1 WHERE `action_type` IN (85,86,134) AND `action_param2` & 1;