I found a huge problem in Papyrus: the expression None != AnyVariable always returns false.
It happens because the variable gets cast to the None type, and all Nones are None. So None == AnyVariable is automatically true in Papyrus.
If the order looks weird, bear in mind that courses in Java and C often recommend doing it that to avoid certain stupid errors. But it sure as heck doesn't work in Papyrus.
Do people know about this? Are there other references to this issue?