Add missing event for catching super_forced_select
Add missing event for catching super_forced_select
Hi, in SelectionToolPrototype,there are 5 selection types,but just super_forced_select dont have event to catch it :/
Re: Add missing event for catching super_forced_select
There is no such event because this selection mode sends Deconstruct input action so it triggers on_player_deconstructed_area event. The only piece that i see is missing is ability of telling this event apart from regular on_player_deconstructed_area event which game tells apart by looking at "selection_mode" that is not given to that event. If i would add defines.selection_mode.super_forced_select constant and make on_player_deconstructed_area event include "selection_mode" of type "defines.selection_mode", would that be enough for you?
Re: Add missing event for catching super_forced_select
Sounds good to me :>