summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-22 20:52:55 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-22 20:52:55 -0400
commit1fd2c34e9a01b072e540612f7aec04c1775995d8 (patch)
tree4c6f6320ea58dd951611cfad950584f1d32797e9
parent0a1c40ae3811877ad7b958ea1aee0aef3b1af5e1 (diff)
downloaddreambuilder_modpack-1fd2c34e9a01b072e540612f7aec04c1775995d8.tar
dreambuilder_modpack-1fd2c34e9a01b072e540612f7aec04c1775995d8.tar.gz
dreambuilder_modpack-1fd2c34e9a01b072e540612f7aec04c1775995d8.tar.bz2
dreambuilder_modpack-1fd2c34e9a01b072e540612f7aec04c1775995d8.tar.xz
dreambuilder_modpack-1fd2c34e9a01b072e540612f7aec04c1775995d8.zip
update gloopblocks and travelnet
-rw-r--r--gloopblocks/init.lua8
-rw-r--r--travelnet/init.lua5
2 files changed, 11 insertions, 2 deletions
diff --git a/gloopblocks/init.lua b/gloopblocks/init.lua
index 6e3406c..860602f 100644
--- a/gloopblocks/init.lua
+++ b/gloopblocks/init.lua
@@ -487,6 +487,14 @@ if minetest.get_modpath("moreblocks") then
sunlight_propagates = true,
})
+ stairsplus:register_all("gloopblocks", "gravel", "default:gravel", {
+ description = S("Gravel"),
+ tiles = {"default_gravel.png"},
+ groups = {crumbly = 2, falling_node = 1, not_in_creative_inventory=1},
+ sounds = default.node_sound_stone_defaults(),
+ sunlight_propagates = false,
+ })
+
if minetest.get_modpath("caverealms") then
stairsplus:register_all("caverealms", "glow_crystal", "caverealms:glow_crystal", {
description = S("Glow Crystal"),
diff --git a/travelnet/init.lua b/travelnet/init.lua
index c72238a..1d4c643 100644
--- a/travelnet/init.lua
+++ b/travelnet/init.lua
@@ -22,6 +22,7 @@
Please configure this mod in config.lua
Changelog:
+ 22.09.18 - Move up/move down no longer close the formspec.
22.09.18 - If in creative mode, wield a diamond pick to dig the station. This avoids
conflicts with too fast punches.
24.12.17 - Added support for localization through intllib.
@@ -459,8 +460,8 @@ travelnet.update_formspec = function( pos, puncher_name, fields )
formspec = formspec..
"label[8.0,1.6;"..S("Position in list:").."]"..
"button_exit[11.3,0.0;1.0,0.5;station_exit;"..S("Exit").."]"..
- "button_exit[9.6,1.6;1.4,0.5;move_up;"..S("move up").."]"..
- "button_exit[10.9,1.6;1.4,0.5;move_down;"..S("move down").."]";
+ "button[9.6,1.6;1.4,0.5;move_up;"..S("move up").."]"..
+ "button[10.9,1.6;1.4,0.5;move_down;"..S("move down").."]";
meta:set_string( "formspec", formspec );