ID:178467
 
Okay, now I'm having a different problem (even though I haven't rectified the other ones from my previous post) I'm getting a runtime error, and I cannot figure out what the problem is. Any help, please???

-------

runtime error: Cannot execute null.Enter().
proc name: Move (/mob/Move)
source file: s_admin2.dm,956
usr: Rubius (/mob/hero)
src: Rubius (/mob/hero)
call stack:
Rubius (/mob/hero): Move(28, 179, 1)
the ryuzakexit (4,1,2) (/turf/ryuzakexit): Entered(Rubius (/mob/hero), the greencobble (4,2,2) (/turf/greencobble))
Rubius (/mob/hero): Move(the ryuzakexit (4,1,2) (/turf/ryuzakexit), 2)
Rubius (/client): Move(the ryuzakexit (4,1,2) (/turf/ryuzakexit), 2)

-------

Here is the code

-------

mob/Move()
if(_GM_lockmove)
return 0
else
. = ..() // this is line 956
I'm sorry to bump this, but it has been over 24 hours and no one has responded. Does anyone out there have a clue as to what my problem may be? Thanks.
In response to Rubius
I'm pretty sure the last line should be ..() not .=..()
In response to Garthor
Garthor wrote:
I'm pretty sure the last line should be ..() not .=..()

No, then Move() would always fail because it would return nothing. I'm not sure what the problem is, but that is certainly not it.