diff options
author | paly2 <plangrognet@laposte.net> | 2016-06-19 19:12:16 +0200 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-06-23 15:49:22 -0400 |
commit | 67507c75918f8a60ad218cdcb69cc8d39e4a55ed (patch) | |
tree | 99fc19ed47ba34d28c81375fc67874aecd3fbc1b /chatcommands.lua | |
parent | 10338cd5d19fbb5975ca3ba5a481d1a11b04f6b6 (diff) |
Fix move_area not updating AreaStore
Diffstat (limited to 'chatcommands.lua')
-rw-r--r-- | chatcommands.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chatcommands.lua b/chatcommands.lua index d37634a..6079e93 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -306,13 +306,14 @@ minetest.register_chatcommand("move_area", { return false, "You need to select an area first." end - area.pos1 = pos1 - area.pos2 = pos2 + areas:move(id, area, pos1, pos2) areas:save() + return true, "Area successfully moved." end, }) + minetest.register_chatcommand("area_info", { description = "Get information about area configuration and usage.", func = function(name, param) |