UkooLabs/FBXSharpie

Token Equals() assigns BooleanToken source token value with target

Closed this issue · 1 comments

if (this is BooleanToken booleanToken && other is BooleanToken booleanTokenOther)
{
     return booleanToken.Value = booleanTokenOther.Value;
}

Should be ==, right?

@torben-struct ty for spotting that now fixed