ID:2688053
 
(See the best response by Kaiochao.)
Code:


Problem description:

Hello,

I was hosting my game yesterday fine, today i'm getting these errors on the log:

runtime error: Cannot execute null.Find().
proc name: Createchar (/mob/proc/Createchar)
source file: Character Creation.dm,491

Looked into the DM File for it and there seems to be no problem. Any advice ? I'm hosting on BYONDPANEL.
Best response
The error indicates that you're trying to call null.Find(). That is, you're calling Find() on something (probably a variable) that is actually null. Maybe you're using a list that doesn't exist, like:
var/list/stuff // == null
var/found = stuff.Find(whatever) // null.Find()