Originally Posted by
kotaro666
I cant find where in the worldbuilder.lua I have to type 16 instead of 12 .-.
Look for this part:
if key == keyset.new then
if #shapelist < 12 then currentshape = new_shape() end
end
if key == keyset.dupe then
if #shapelist < 12 then copy_shape(shapelist[currentshape].data) end
end
and change those two 12's to 16's
if key == keyset.new then
if #shapelist < 16 then currentshape = new_shape() end
end
if key == keyset.dupe then
if #shapelist < 16 then copy_shape(shapelist[currentshape].data) end
end
It's near the lower middle of the script.
Just Ctrl+f "12" and you'll find it.
Last edited by MrPoptart; Apr 26, 2010 at 07:13 AM.