You use a pointer to cWorld in cPlugin in OnExplosion:
and then in Plugin_NewLua you use a reference:
They both need to be the same, either one
Code:
cWorld *and then in Plugin_NewLua you use a reference:
Code:
cWorld &They both need to be the same, either one

