Damage Zone ArgumentNullException : Demo Scene bug

Hi, I am unsure if this is where I should be reporting this, but currently if you import only Opsive Ultimate Character Controller, The Photon Addon, and PUN 2, you will get an error when you enter a damage zone, this is all within the provided demo with nothing changed or added.
 
Here is a screenshot that shows the error.
Everything else seems to be working fine, its just the damage zone, I found this when I stumbled into the same bug in my project.
 

Attachments

  • pic.png
    pic.png
    450.7 KB · Views: 4
Thanks for the report. This related to the new damage processor in version 2.4. You can fix this by changing line 52 of PunHealthMonitor to:

Code:
            if (originator != null && originator.Owner != null) {
 
Top