Author Topic: I cannot place a single brick on my server  (Read 400 times)

Whenever I try to place a single brick on my server, while the brickcount is 0, it says that I reached the max brickcount.
My bricklimit pref is set to 256000.
Why is this happening?
I do not feel console.log is necessary.

I do feel a console.log is necessary, as it sounds like you have an add-on that sets a specific brick limit per-client.

I do feel a console.log is necessary, as it sounds like you have an add-on that sets a specific brick limit per-client.
I actually think that I missed the new $pref::server::ghostlimit, so I'm changing that around. If it doesn't help, I'll post console.log

Well, looks like I found the issue...
Quote
base/server/scripts/allGameScripts.cs (6929): Unable to find function getBrickLimit
screwing around with that for a bit to see if i can fix it

From what I can tell, that function being missing shouldn't be a thing that is possible.

Paste this in your console and see if it starts working again.
Code: [Select]
function getBrickLimit(){return $pref::server::GhostLimit-1000;}

From what I can tell, that function being missing shouldn't be a thing that is possible.

Paste this in your console and see if it starts working again.
Code: [Select]
function getBrickLimit(){return $pref::server::GhostLimit-1000;}
That fixed it, thank you!