Modernize. Bags: use strings
This commit is contained in:
parent
26e0e41593
commit
c0bd9977be
@ -1,5 +1,7 @@
|
|||||||
# Unified Inventory
|
# Unified Inventory
|
||||||
|
|
||||||
|
![Screenshot](screenshot.png)
|
||||||
|
|
||||||
Unified Inventory replaces the default survival and creative inventory.
|
Unified Inventory replaces the default survival and creative inventory.
|
||||||
|
|
||||||
|
|
||||||
@ -13,14 +15,14 @@ Unified Inventory replaces the default survival and creative inventory.
|
|||||||
* Home function to teleport
|
* Home function to teleport
|
||||||
* Trash slot
|
* Trash slot
|
||||||
* Lite mode: reduces the item browser width
|
* Lite mode: reduces the item browser width
|
||||||
|
* `minetest.conf` setting `unified_inventory_lite = true`
|
||||||
* Mod API for modders: see [mod_api.txt](doc/mod_api.txt)
|
* Mod API for modders: see [mod_api.txt](doc/mod_api.txt)
|
||||||
* Setting-determinated features: see [settingtypes.txt](settingtypes.txt)
|
* Setting-determinated features: see [settingtypes.txt](settingtypes.txt)
|
||||||
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
* Minetest 5.0.0+ since commit 4403b69
|
* Minetest 5.0.0+
|
||||||
* Minetest 0.4.16+ prior commit 4403b69
|
|
||||||
|
|
||||||
|
|
||||||
# Licenses
|
# Licenses
|
||||||
|
10
bags.lua
10
bags.lua
@ -250,7 +250,7 @@ if minetest.get_modpath("farming") ~= nil then
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "unified_inventory:bag_small",
|
output = "unified_inventory:bag_small",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "farming:cotton", ""},
|
{"", "farming:string", ""},
|
||||||
{"group:wool", "group:wool", "group:wool"},
|
{"group:wool", "group:wool", "group:wool"},
|
||||||
{"group:wool", "group:wool", "group:wool"},
|
{"group:wool", "group:wool", "group:wool"},
|
||||||
},
|
},
|
||||||
@ -260,8 +260,8 @@ if minetest.get_modpath("farming") ~= nil then
|
|||||||
output = "unified_inventory:bag_medium",
|
output = "unified_inventory:bag_medium",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", ""},
|
{"", "", ""},
|
||||||
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
{"farming:string", "unified_inventory:bag_small", "farming:string"},
|
||||||
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
{"farming:string", "unified_inventory:bag_small", "farming:string"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -269,8 +269,8 @@ if minetest.get_modpath("farming") ~= nil then
|
|||||||
output = "unified_inventory:bag_large",
|
output = "unified_inventory:bag_large",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", ""},
|
{"", "", ""},
|
||||||
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
{"farming:string", "unified_inventory:bag_medium", "farming:string"},
|
||||||
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
{"farming:string", "unified_inventory:bag_medium", "farming:string"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user