Doors patch repair

master
daretmavi 2021-04-07 21:38:40 +02:00
parent ebaf94d9a6
commit 8bc3cc0c62
4 changed files with 11 additions and 13 deletions

View File

@ -1,8 +1,10 @@
-------------------------------------------------------------------------------
Work in Progress 0.9 [03.04.2020]
Work in Progress 0.8.1 [07.04.2020]
Mods update
Door patch repair
-------------------------------------------------------------------------------
Work in Progress 0.8 [19.03.2020]

View File

@ -38,8 +38,8 @@ MOD_PATCH=( ) #patch names
#MOD_PATCHES - all patches defined
#MOD_PATCHES - first is path and all patch names are separeted by ":"
#MOD_PATCHES=("mobs/water_life:poison.patch" "buildings/doors:doors_update.patch" "player/3d_armor:mob_damage.patch" "player/hbsprint:no_damage.patch" "player/hunger_ng:effects.patch")
MOD_PATCHES=("\
buildings/doors:doors_update.patch" "buildings/doors:doors_update54.patch" \
MOD_PATCHES=(\
"buildings/doors:doors_update.patch" "buildings/doors:doors_update54.patch" \
"buildings/ts_doors:ts_doors_update54.patch" \
"player/hbsprint:no_damage.patch" \
"mobs/mobs_mobkit/water_life:poison.patch" "mobs/mobs_mobkit/water_life:poison_hunger_ng.patch" \

View File

@ -973,3 +973,9 @@ minetest.register_craft( {
{ "default:steel_ingot" },
}
} )
-- compatibility for Minetest S3 engine
if not vector.offset_y or not minetest.get_node_above then
dofile( minetest.get_modpath( "doors" ) .. "/compatibility.lua" )
end

View File

@ -17,16 +17,6 @@ index 1a822da..9ef1f43 100644
description = "Hidden Door Segment",
drawtype = "nodebox", -- cannot use air-like, since falling nodes would be stuck
paramtype = "light",
@@ -972,9 +973,3 @@ minetest.register_craft( {
{ "default:steel_ingot" },
}
} )
-
--- compatibility for Minetest S3 engine
-
-if not vector.offset_y or not minetest.get_node_above then
- dofile( minetest.get_modpath( "doors" ) .. "/compatibility.lua" )
-end
diff --git a/init.lua b/init.lua
index e6ceffd..8533226 100644
--- a/init.lua