Properly document the WorldEdit API.

This commit is contained in:
Anthony Zhang
2012-07-13 22:14:25 -04:00
parent 21f768be14
commit 5869ccf7f8
3 changed files with 65 additions and 7 deletions

View File

@ -112,8 +112,8 @@ minetest.register_chatcommand("/set", {
return
end
local count = worldedit.fill(pos1, pos2, param)
minetest.chat_send_player(name, count .. " nodes filled")
local count = worldedit.set(pos1, pos2, param)
minetest.chat_send_player(name, count .. " nodes set")
end,
})