diff options
author | Uberi <azhang9@gmail.com> | 2013-08-16 16:57:35 -0400 |
---|---|---|
committer | Uberi <azhang9@gmail.com> | 2013-08-16 16:57:35 -0400 |
commit | 272541c9dadc57b0f1dfa54c74f8b0173c4dc07d (patch) | |
tree | e54fa7e67f0444ec3be70c9d03d30a02b9edf665 /worldedit/primitives.lua | |
parent | 9ab52df56a9a4eac8b85f2641e78a1e33bc6ed25 (diff) |
Changes to support the latest schematic probability specification.
Diffstat (limited to 'worldedit/primitives.lua')
-rw-r--r-- | worldedit/primitives.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worldedit/primitives.lua b/worldedit/primitives.lua index e359baa..508503d 100644 --- a/worldedit/primitives.lua +++ b/worldedit/primitives.lua @@ -224,7 +224,7 @@ worldedit.hollow_cylinder = function(pos, axis, length, radius, nodename) --wip: manip:read_from_map(pos1, pos2)
--create schematic for single node column along the axis
- local node = {name=nodename, param1=0, param2=0}
+ local node = {name=nodename, param1=255, param2=0}
local nodes = {}
for i = 1, length do
nodes[i] = node
|