weird problem in C#

so this is my code, when i send the “code1” message i see “1” (from log) but not “2” (also example doesn’t run, and console doesn’t give any error) but when i call "OnChallengeTurnTaken " it works fine "example " too, what could be wrong ?
alt text

The only situations I’ve seen similar to this is when an exception was thrown stopping code execution in the function it was thrown from. Typical of null references, or references to improperly instantiated objects. Could be that the calling class doesn’t have access to Example?

Weird that you aren’t seeing anything in the console.