built on 14/05/2021 20:04:11
This commit is contained in:
parent
0434f6b325
commit
6cad8407a5
13
README.md
13
README.md
@ -17,7 +17,7 @@ This modpack includes:
|
|||||||
- basic_materials: Needed items for many recipes
|
- basic_materials: Needed items for many recipes
|
||||||
- stamina: The "hunger" mod from "minetest-mods"
|
- stamina: The "hunger" mod from "minetest-mods"
|
||||||
- doc: Ingame documentation mod, used for minecart and signs_bot
|
- 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
|
- tubelib2: Necessary library
|
||||||
- safer_lua: Necessary library
|
- safer_lua: Necessary library
|
||||||
- lcdlib: 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
|
### History
|
||||||
|
|
||||||
|
|
||||||
|
#### 2021-05-14
|
||||||
|
|
||||||
|
Updated Mods:
|
||||||
|
- compost
|
||||||
|
- minecart
|
||||||
|
- signs_bot
|
||||||
|
- techage
|
||||||
|
- towercrane
|
||||||
|
- unified_inventory
|
||||||
|
|
||||||
|
|
||||||
#### 2021-02-07
|
#### 2021-02-07
|
||||||
|
|
||||||
Updated Mods:
|
Updated Mods:
|
||||||
|
@ -563,6 +563,7 @@ minetest.register_node("hyperloop:elevator_door_top", {
|
|||||||
drop = "",
|
drop = "",
|
||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
use_texture_alpha = hyperloop.CLIP,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy = 3, not_in_creative_inventory=1},
|
groups = {snappy = 3, not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
@ -601,6 +602,7 @@ minetest.register_node("hyperloop:elevator_door", {
|
|||||||
drop = "",
|
drop = "",
|
||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
use_texture_alpha = hyperloop.CLIP,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy = 3, not_in_creative_inventory=1},
|
groups = {snappy = 3, not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
|
@ -59,6 +59,11 @@ else
|
|||||||
|
|
||||||
end
|
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
|
if tubelib2.version < 1.7 then
|
||||||
error("Hyperloop requires tubelib2 version 1.7 or newer!!!")
|
error("Hyperloop requires tubelib2 version 1.7 or newer!!!")
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user