mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-29 23:00:52 +02:00
Various fixes reccomended by the mod author
This commit is contained in:
@ -13,6 +13,11 @@ available to survival-mode players.
|
||||
|
||||
local LATEST_SERIALIZATION_VERSION = 1
|
||||
|
||||
-- Check if mcl_core or default is installed
|
||||
if not minetest.get_modpath("mcl_core") and not minetest.get_modpath("default") then
|
||||
error(minetest.get_current_modname().." ".."requires mcl_core or default to be installed (please install MTG or MCL2, or compatible games)")
|
||||
end
|
||||
|
||||
wrench = {}
|
||||
|
||||
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
||||
|
@ -1,3 +1,3 @@
|
||||
name = wrench
|
||||
optional_depends = technic, technic_chests, technic_worldgen, intllib, default, mcl_core
|
||||
supported_games = minetest_game,mineclone2
|
||||
supported_games = minetest_game,mineclone2,mineclonia,mineclone5
|
@ -23,7 +23,7 @@ local STRING, FLOAT =
|
||||
wrench.META_TYPE_FLOAT
|
||||
|
||||
wrench.registered_nodes = {
|
||||
[chest_ingrediant] = {
|
||||
[chest_ingredient] = {
|
||||
lists = {"main"},
|
||||
},
|
||||
["default:chest_locked"] = {
|
||||
|
Reference in New Issue
Block a user