You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently consolidated menu runs original condition code before statement but with child custom params. This can lead to error when child params are different to parent params.
Thanks @mrschick for another pointing to problem in #9876.
_insertChildrenChild changes are made just for consistency. In fact it can be replaced with {} because it looks like it's never used after fnc_collectActiveActionTree.
I don't know why this wasn't implemented in #8060 :-(
a similar bug also exists with reordering https://github.com/acemod/ACE3/blob/master/addons/interact_menu/functions/fnc_initMenuReorder.sqf#L32-L36 private _conditionFullString = format ["%1 && {%2}", _parentConditionString, _condition call EFUNC(common,codeToString)];
will call child and parent with the child's params
but I really don't see this being a problem because params are almost exclusively used with dynamic children and wouldn't be show as re-orderable, I think?
So yes I also don't see a problem with reordering.
But I found a bug: reordered Equipment menu has no artillery tables. I'm working on it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When merged this pull request will:
Currently consolidated menu runs original condition code before statement but with child custom params. This can lead to error when child params are different to parent params.
Thanks @mrschick for another pointing to problem in #9876.
_insertChildrenChildchanges are made just for consistency. In fact it can be replaced with{}because it looks like it's never used afterfnc_collectActiveActionTree.I don't know why this wasn't implemented in #8060 :-(