Skip to content
Snippets Groups Projects
Commit ea8a93a4 authored by Timon Römer's avatar Timon Römer
Browse files

Fixes warning condition on startup

parent ba978278
No related branches found
No related tags found
2 merge requests!83Hotfix: Intenselect and InputActions,!82Adds possibility to have more than one ScoringBehaviour attached to IntenSelectable
Pipeline #373025 passed
......@@ -43,7 +43,7 @@ void UIntenSelectable::BeginPlay()
if (AttachedIntenSelectables.Num() > 1)
{
if (!ScoringBehaviours.Num() == 0)
if (ScoringBehaviours.Num() == 0)
{
ShowErrorAndQuit(
"Please assign the Scoring Behaviour manually when using more than one IntenSelectable Component!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment