Quote:
|
Originally Posted by napo_p2p
For Loriel's movement system there is a fix...
Find: setarray this.wall,6;
and replace it with:
PHP Code:
if (graalversion < 3) setarray this.wall,6;
else setarray(this.wall,6);
|
Ah wrong
The problem is that this.wall is used as normal variable and array at the same time. Rename the array stuff to this.wallarr or whatever