built on 14/05/2021 20:04:11

This commit is contained in:
Joachim Stolberg 2021-05-14 20:04:11 +02:00
parent 0434f6b325
commit 6cad8407a5
3 changed files with 19 additions and 1 deletions

View File

@ -17,7 +17,7 @@ This modpack includes:
- basic_materials: Needed items for many recipes
- stamina: The "hunger" mod from "minetest-mods"
- doc: Ingame documentation mod, used for minecart and signs_bot
- unified_inventory: Player's inventory with crafting guide, bags, and more.
- unified_inventory V1: Player's inventory with crafting guide, bags, and more.
- tubelib2: Necessary library
- safer_lua: Necessary library
- lcdlib: Necessary library
@ -45,6 +45,17 @@ ta4_jetpack requires the modpack 3d_armor. 3d_armor is itself a modpack and can'
### History
#### 2021-05-14
Updated Mods:
- compost
- minecart
- signs_bot
- techage
- towercrane
- unified_inventory
#### 2021-02-07
Updated Mods:

View File

@ -563,6 +563,7 @@ minetest.register_node("hyperloop:elevator_door_top", {
drop = "",
paramtype = 'light',
paramtype2 = "facedir",
use_texture_alpha = hyperloop.CLIP,
is_ground_content = false,
groups = {snappy = 3, not_in_creative_inventory=1},
})
@ -601,6 +602,7 @@ minetest.register_node("hyperloop:elevator_door", {
drop = "",
paramtype = 'light',
paramtype2 = "facedir",
use_texture_alpha = hyperloop.CLIP,
is_ground_content = false,
groups = {snappy = 3, not_in_creative_inventory=1},
})

View File

@ -59,6 +59,11 @@ else
end
-- MT 5.4 new string mode
hyperloop.CLIP = minetest.features.use_texture_alpha_string_modes and "clip" or false
hyperloop.BLEND = minetest.features.use_texture_alpha_string_modes and "blend" or true
if tubelib2.version < 1.7 then
error("Hyperloop requires tubelib2 version 1.7 or newer!!!")
else