Skip to content

Commit

Permalink
even safer
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Jan 17, 2025
1 parent 6f7766c commit 772e9f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void SequenceCommand::triggerInternal(int multiplexIndex)

if (actionType != STOP_ALL_SEQUENCES && actionType != PLAY_MULTI_SEQUENCES && actionType != PLAY_SEQUENCE_AT && actionType != SET_EDITING_SEQUENCE_AT)
{
if (getLinkedTargetContainerAs<ControllableContainer>(target, multiplexIndex) == nullptr) return;
if (target == nullptr || getLinkedTargetContainerAs<ControllableContainer>(target, multiplexIndex) == nullptr) return;
//if (target->targetContainer.wasObjectDeleted()) return;
}

Expand Down

0 comments on commit 772e9f0

Please sign in to comment.