runtime error: Cannot execute null.Find().
proc name: Login (/mob/BaseCamp/ChoosingCharacter/Login)
source file: XXXX.DM,92
usr: Sineful (/mob/BaseCamp/ChoosingCharacter)
src: Sineful (/mob/BaseCamp/ChoosingCharacter)
call stack:
Sineful (/mob/BaseCamp/ChoosingCharacter): Login()
Sineful (/client): New()
Sineful (/client): New()
Sineful (/client): New()
And this is what is there:
mob/BaseCamp/ChoosingCharacter
Login()
if(WorldPassword) //Yeah..Line 92
var/Password = input("Please enter the password.")as null|text
if(!Password)
del(src)
return
else
if(Password == WorldPassword)
spawn()
ChooseCharacter()
return
else
src << "That password is incorrect."
del(src)
return
else
spawn()
Any help is appreciated, Thanks in advance.
[EDIT]
It happens everytime no matter what I put in there.