This commit is contained in:
root 2021-01-27 21:55:09 +01:00
parent f5e09e2a19
commit 424dcc4a4e
12 changed files with 11 additions and 15 deletions

View File

@ -1,3 +1,4 @@
name = homedecor_books
description = Homedecor mod: books
depends = homedecor_common, default, unifieddyes, creative
depends = homedecor_common, default, creative
optional_depends = unifieddyes

View File

@ -7,14 +7,14 @@ Barbecue=Barbacoa
Doghouse=Casa de perros
Garden Lattice (@1)=Enrejado de jardín (@1)
Garden stone path=Camino de piedra de jardín
No room in your inventory to add a filled bucket!=
No room under there to hang a swing.=
No room in your inventory to add a filled bucket!=No hay espacio en tu inv para el cubo
No room under there to hang a swing.=No hay espacio para colgar el columpio
Shrubbery (@1)=Arbustos (@1)
Shrubbery (large, @1)=Arbustos (@1)
Tree's swing=Columpio
Water well=Pozo de agua
You have to point at the bottom side of an overhanging object to place a swing.=
You have to point at the bottom side of an overhanging object to place a swing.=Debe ser la parte inferior de un objeto para colocar el columpio.
green=verde
red=roja

View File

@ -1,3 +0,0 @@
grian
MINECRAFTLOVER
CC BY-SA 3.0

View File

@ -1,3 +0,0 @@
lotte with purple hair
nadine
CC 0 (1.0)

View File

@ -1,3 +0,0 @@
Goebbels
Goebbels
CC BY-SA 3.0

View File

@ -0,0 +1,3 @@
alex_mercer_corrupted
gamer 20n
CC BY-SA 3.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -209,7 +209,8 @@ function techpack_warehouse.allow_metadata_inventory_put(self, pos, listname, in
local main_stack = inv:get_stack("main", index)
local item_name = inv:get_stack("filter", index):get_name()
if listname == "input" and item_name == stack:get_name() then
return math.min(stack:get_count(), self.inv_size - main_stack:get_count())
local input_stack = inv:get_stack("input", index)
return math.min(stack:get_count(), self.inv_size - main_stack:get_count() - input_stack:get_count())
elseif listname == "filter" and item_name == main_stack:get_name() then
return 1
elseif listname == "shift" then

View File

@ -98,7 +98,7 @@ minetest.register_craft({
if tubelib2.version < 2.0 then
minetest.log("error", "TechPack/Tubelib requires tubelib2 version 2.0 or newer!!!")
error("TechPack/Tubelib requires tubelib2 version 2.0 or newer!!!")
else
dofile(minetest.get_modpath("tubelib") .. "/tubes.lua")
dofile(minetest.get_modpath("tubelib") .. "/command.lua")