comment corrections

This commit is contained in:
Joachim Stolberg 2018-01-03 13:37:03 +01:00
parent d0af5b3c13
commit 9ab772f24b
3 changed files with 10 additions and 10 deletions

@ -1,4 +1,4 @@
# Tower Crane Mod V0.14 # Tower Crane Mod
In order to simplify the construction of buildings, the crane forms a construction area in which the player gets fly privs. In order to simplify the construction of buildings, the crane forms a construction area in which the player gets fly privs.
Browse on: ![GitHub](https://github.com/joe7575/Minetest-Towercrane) Browse on: ![GitHub](https://github.com/joe7575/Minetest-Towercrane)

@ -1,7 +1,7 @@
-- Maximum crane height in blocks (12..n) -- Maximum crane height in blocks (8..n)
towercrane.max_height = tonumber(minetest.setting_get("towercrane_max_height")) or 32 towercrane.max_height = tonumber(minetest.setting_get("towercrane_max_height")) or 32
-- Maximum crane width in blocks (12..n) -- Maximum crane width in blocks (8..n)
towercrane.max_width = tonumber(minetest.setting_get("towercrane_max_width")) or 32 towercrane.max_width = tonumber(minetest.setting_get("towercrane_max_width")) or 32
-- Crane rope lenght in block (max_height .. max_height+x) -- Crane rope lenght in block (max_height .. max_height+x)

@ -1,13 +1,13 @@
# Maximum crane height in blocks (12..n) # Maximum crane height in nodes (8..n)
towercrane_max_height (maximum crane height) int 24 towercrane_max_height (maximum crane height) int 32
# Maximum crane width in blocks (12..n) # Maximum crane width in nodes (8..n)
towercrane_max_width (maximum crane width) int 24 towercrane_max_width (maximum crane width) int 32
# Crane rope lenght in blocks (max_height .. max_height+x) # Crane rope lenght in nodes (max_height .. max_height+x)
# If the rope length is larger than the crane height, the crane # If the rope length is larger than the crane height, the crane
# can be placed on buildings and the hook still reaches the ground. # can be placed on buildings and the player still reaches the ground.
towercrane_rope_length (crane rope lenght) int 24 towercrane_rope_length (crane rope lenght) int 32
# Recipe available (true/false) # Recipe available (true/false)
towercrane_recipe (recipe available) bool true towercrane_recipe (recipe available) bool true