diff --git a/README.md b/README.md index 50c90ea..bb8f057 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,6 @@ to 'lsqlite3' and 'lua-marshal', but there is no way back, so: - 2020-05-22 V0.08 * Support for 'lua-marshal' and 'lsqlite3' added - 2020-05-31 V0.09 * TA4 tubes upgraded, manuals updated - 2020-06-04 V0.10 * minor changes and bugfixes - +- 2020-06-14 V0.11 * cart commands added for both controllers diff --git a/init.lua b/init.lua index 6a35d86..d984915 100644 --- a/init.lua +++ b/init.lua @@ -13,7 +13,7 @@ techage = {} -- Version for compatibility checks, see readme.md/history -techage.version = 0.10 +techage.version = 0.11 if minetest.global_exists("tubelib") then minetest.log("error", "[techage] Techage can't be used together with the mod tubelib!") @@ -27,8 +27,8 @@ elseif minetest.global_exists("techpack") then elseif minetest.global_exists("tubelib2") and tubelib2.version < 1.9 then minetest.log("error", "[techage] Techage requires tubelib2 version 1.9 or newer!") return -elseif minetest.global_exists("minecart") and minecart.version < 1.05 then - minetest.log("error", "[techage] Techage requires minecart version 1.05 or newer!") +elseif minetest.global_exists("minecart") and minecart.version < 1.06 then + minetest.log("error", "[techage] Techage requires minecart version 1.06 or newer!") return elseif minetest.global_exists("lcdlib") and lcdlib.version < 1.0 then minetest.log("error", "[techage] Techage requires lcdlib version 1.0 or newer!")