NewMob(client/c, F as file)
var/mob/NewMob
var/mob/Oldmob = c.mob
var/MobPath = "/mob/Player/[lowertext(F["Class"])]"
NewMob = new MobPath
NewMob.Read(F)
NewMob.cansave = 1
c.mob = NewMob
del(Oldmob)
Problem description:
(TELNET) xxx.xxx.xxx.xxx - kal-el FOUND
runtime error: Cannot create objects of type null.
proc name: NewMob (/mob/proc/NewMob)
source file: Procs.dm,91
Happens when a player logs in trying to create a new mob based on saves class.