Running Version 0.5, build 6902.3047 with Vita Nex and everything is working perfectly accept the cellar.cs script. i get an error related to the stairs up. I have the addstairs command installed but am i missing something else?
upload_2019-1-14_22-52-25.png
Any help would be appreciated, I can always just remove this one script and play just fine.
 
Try adding
Code:
using System.Linq;

To the top of the script file.
That exists as line 16 but the error refers to
AddComponent(StairsUp = new CellarStairs(s.StairsUp), p.ToPoint3D(Region.MinZ + 1).Clone3D(-p.X, -p.Y, -p.Z));

StairsDown.LinkWith(StairsUp);

if (!House.Addons.Contains(this))
{
House.Addons.Add(this);
}
this section so i am wondering if i am missing a file or if the one i am using is incorrect, I got my addstairs file from an old distro file
 
Code:
if (!House.Addons.Contains(this))
{
House.Addons.Add(this);
}

Can be changed to;
Code:
House.Addons[this] = null;
 
Back