v0.23 version update
This commit is contained in:
parent
3c19345aaa
commit
5e307bf5a7
11
README.md
11
README.md
@ -77,6 +77,17 @@ Available worlds will be converted to 'lsqlite3', but there is no way back, so:
|
|||||||
|
|
||||||
### History
|
### History
|
||||||
|
|
||||||
|
**2020-09-13 V0.23**
|
||||||
|
- Pull request #26: Digtron Battery: Fix duplication bug (from Thomas-S)
|
||||||
|
- Improve ta4 sensor box
|
||||||
|
- Firebox: Add check for free space when placing the node
|
||||||
|
- Lua controller: Add 'get_gametime' function
|
||||||
|
- Pull request #27: Liquid Tanks: Add protection support (from Thomas-S)
|
||||||
|
- Fix pump issue (silo source items can disappear)
|
||||||
|
- Pull request #28: Quarry: Improve digging behaviour (from Thomas-S)
|
||||||
|
- Pull request #28: Battery: Store battery load as metadata (from Thomas-S)
|
||||||
|
- Pull request #29: Distributor: Keep item metadata (from Thomas-S)
|
||||||
|
|
||||||
**2020-08-08 V0.22**
|
**2020-08-08 V0.22**
|
||||||
- Pull request #25: Growlight: Improve flower registration (from Thomas-S)
|
- Pull request #25: Growlight: Improve flower registration (from Thomas-S)
|
||||||
- Add tube support for digtron chests and protector:chest
|
- Add tube support for digtron chests and protector:chest
|
||||||
|
@ -94,7 +94,7 @@ minetest.register_node("techage:ta4_battery", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {choppy=1, cracky=1, crumbly=1, not_in_creative_inventory=nici},
|
groups = {choppy=1, cracky=1, crumbly=1},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
2
init.lua
2
init.lua
@ -13,7 +13,7 @@
|
|||||||
techage = {}
|
techage = {}
|
||||||
|
|
||||||
-- Version for compatibility checks, see readme.md/history
|
-- Version for compatibility checks, see readme.md/history
|
||||||
techage.version = 0.22
|
techage.version = 0.23
|
||||||
|
|
||||||
if minetest.global_exists("tubelib") then
|
if minetest.global_exists("tubelib") then
|
||||||
minetest.log("error", "[techage] Techage can't be used together with the mod tubelib!")
|
minetest.log("error", "[techage] Techage can't be used together with the mod tubelib!")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user