summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian <Christian_D_97@gmx.de>2014-04-08 14:31:47 +0200
committerChristian <Christian_D_97@gmx.de>2014-04-08 14:31:47 +0200
commit73558fa596424114a916280034747019f0c6f7b0 (patch)
treed025ead15ce23d3d70945809fb2c04cebbc8d0e8
parent893a2da6624991771dde8057b1fb4483e6181f49 (diff)
parentfa17792cbaa9e4a2291c04cff757dd79fbfd978e (diff)
downloadroads-73558fa596424114a916280034747019f0c6f7b0.tar
roads-73558fa596424114a916280034747019f0c6f7b0.tar.gz
roads-73558fa596424114a916280034747019f0c6f7b0.tar.bz2
roads-73558fa596424114a916280034747019f0c6f7b0.tar.xz
roads-73558fa596424114a916280034747019f0c6f7b0.zip
Merge pull request #8 from CraigyDavi/master
Bug fix with construction fence
-rw-r--r--constructionarea/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/constructionarea/init.lua b/constructionarea/init.lua
index d9e328b..6ae32fe 100644
--- a/constructionarea/init.lua
+++ b/constructionarea/init.lua
@@ -29,7 +29,7 @@ minetest.register_node(":streets:constructionfence_bottom",{
if minetest.get_node(pos).name == "air" then
minetest.add_node(pos,{name = "streets:constructionfence_top", param2 = minetest.dir_to_facedir(placer:get_look_dir())})
else
- minetest.chat_send_player(placer:get_player_name("Not enough free space! A construction fence has a height of 2 blocks!"))
+ minetest.chat_send_player(placer:get_player_name(),"Not enough free space! A construction fence has a height of 2 blocks!")
end
end
})