Fixes #1339 - Allow attacks and abilities to interrupt sprite interaction

This commit is contained in:
heydabop
2021-09-20 11:52:32 -05:00
parent 6b198044fe
commit 7087ffde7c

View File

@ -112,6 +112,9 @@ impl CharacterBehavior for Data {
},
}
// Allow attacks and abilities to interrupt
handle_wield(data, &mut update);
// At end of state logic so an interrupt isn't overwritten
handle_state_interrupt(data, &mut update, false);