From 74d4986d1d491aa9da7117c4e0e27ae6f05ee13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20=C3=85str=C3=B6m?= Date: Sat, 1 May 2021 15:37:14 +0200 Subject: [PATCH 01/15] Fix rays not being cast in a specific direction A bug was introduced in 679e2b1b which caused explosions to not cast rays for environment destruction in the (+X, +Y, +Z) direction. This commit fixes that. --- mods/CORE/mcl_explosions/init.lua | 76 +++++++++++++++---------------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/mods/CORE/mcl_explosions/init.lua b/mods/CORE/mcl_explosions/init.lua index 79221d0e..754a9e46 100644 --- a/mods/CORE/mcl_explosions/init.lua +++ b/mods/CORE/mcl_explosions/init.lua @@ -57,46 +57,44 @@ local function compute_sphere_rays(radius) local rays = {} local sphere = {} - for i=1, 2 do + local function add_ray(pos) + sphere[minetest.hash_node_position(pos)] = pos + end + + for y = -radius, radius do + for z = -radius, radius do + for x = -radius, 0 do + local d = x * x + y * y + z * z + if d <= radius * radius then + add_ray(vector.new(x, y, z)) + add_ray(vector.new(-x, y, z)) + break + end + end + end + end + + for x = -radius, radius do + for z = -radius, radius do + for y = -radius, 0 do + local d = x * x + y * y + z * z + if d <= radius * radius then + add_ray(vector.new(x, y, z)) + add_ray(vector.new(x, -y, z)) + break + end + end + end + end + + for x = -radius, radius do for y = -radius, radius do - for z = -radius, radius do - for x = -radius, 0, 1 do - local d = x * x + y * y + z * z - if d <= radius * radius then - local pos = { x = x, y = y, z = z } - sphere[minetest.hash_node_position(pos)] = pos - break - end - end - end - end - end - - for i=1,2 do - for x = -radius, radius do - for z = -radius, radius do - for y = -radius, 0, 1 do - local d = x * x + y * y + z * z - if d <= radius * radius then - local pos = { x = x, y = y, z = z } - sphere[minetest.hash_node_position(pos)] = pos - break - end - end - end - end - end - - for i=1,2 do - for x = -radius, radius do - for y = -radius, radius do - for z = -radius, 0, 1 do - local d = x * x + y * y + z * z - if d <= radius * radius then - local pos = { x = x, y = y, z = z } - sphere[minetest.hash_node_position(pos)] = pos - break - end + for z = -radius, 0 do + local d = x * x + y * y + z * z + if d <= radius * radius then + add_ray(vector.new(x, y, z)) + add_ray(vector.new(x, y, -z)) + break end end end From d9bbf4879c000245ca001c26cba8a98824444f2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20=C3=85str=C3=B6m?= Date: Sat, 8 May 2021 19:59:48 +0200 Subject: [PATCH 02/15] Adjust explosion entity damage hitbox In mcl_explosions the hitbox used for calculating the damage of an entity is its collisionbox multiplied by two. This commit removes the multiplication by two because that makes explosion damage behave weirdly in some circumstances. It was most likely implemented that way because of a misinterpretation of the Minecraft wiki. --- mods/CORE/mcl_explosions/init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/CORE/mcl_explosions/init.lua b/mods/CORE/mcl_explosions/init.lua index 79221d0e..82a3c07c 100644 --- a/mods/CORE/mcl_explosions/init.lua +++ b/mods/CORE/mcl_explosions/init.lua @@ -253,12 +253,12 @@ local function trace_explode(pos, strength, raydirs, radius, info, puncher) if collisionbox then -- Create rays from random points in the collision box - local x1 = collisionbox[1] * 2 - local y1 = collisionbox[2] * 2 - local z1 = collisionbox[3] * 2 - local x2 = collisionbox[4] * 2 - local y2 = collisionbox[5] * 2 - local z2 = collisionbox[6] * 2 + local x1 = collisionbox[1] + local y1 = collisionbox[2] + local z1 = collisionbox[3] + local x2 = collisionbox[4] + local y2 = collisionbox[5] + local z2 = collisionbox[6] local x_len = math.abs(x2 - x1) local y_len = math.abs(y2 - y1) local z_len = math.abs(z2 - z1) From 5d3514880a92468ea4ecde04ffd7c12d69e0f6f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20=C3=85str=C3=B6m?= Date: Sun, 16 May 2021 13:44:04 +0200 Subject: [PATCH 03/15] Move data from deprecated files to mod.conf Move data from deprecated files (depends.txt and description.txt) into fields in mod.conf for all mods. --- mods/CORE/mcl_attached/description.txt | 1 - mods/CORE/mcl_attached/mod.conf | 2 ++ mods/CORE/mcl_init/description.txt | 1 - mods/CORE/mcl_init/mod.conf | 1 + mods/CORE/mcl_loot/description.txt | 1 - mods/CORE/mcl_loot/mod.conf | 1 + mods/CORE/mcl_particles/description.txt | 1 - mods/CORE/mcl_particles/mod.conf | 1 + mods/CORE/mcl_sounds/description.txt | 1 - mods/CORE/mcl_sounds/mod.conf | 1 + mods/CORE/mcl_util/depends.txt | 1 - mods/CORE/mcl_util/description.txt | 1 - mods/CORE/mcl_util/mod.conf | 2 ++ mods/CORE/mcl_worlds/depends.txt | 1 - mods/CORE/mcl_worlds/description.txt | 1 - mods/CORE/mcl_worlds/mod.conf | 3 +++ mods/ENTITIES/drippingwater/depends.txt | 1 - mods/ENTITIES/drippingwater/mod.conf | 2 ++ mods/ENTITIES/mcl_boats/depends.txt | 3 --- mods/ENTITIES/mcl_boats/description.txt | 1 - mods/ENTITIES/mcl_boats/mod.conf | 3 +++ mods/ENTITIES/mcl_falling_nodes/description.txt | 1 - mods/ENTITIES/mcl_falling_nodes/mod.conf | 1 + mods/ENTITIES/mcl_item_entity/depends.txt | 2 -- mods/ENTITIES/mcl_item_entity/description.txt | 1 - mods/ENTITIES/mcl_item_entity/mod.conf | 2 ++ mods/ENTITIES/mcl_minecarts/depends.txt | 12 ------------ mods/ENTITIES/mcl_minecarts/description.txt | 1 - mods/ENTITIES/mcl_minecarts/mod.conf | 3 +++ mods/ENTITIES/mcl_mobs/description.txt | 1 - mods/ENTITIES/mcl_mobs/mod.conf | 1 + mods/ENTITIES/mobs_mc/depends.txt | 12 ------------ mods/ENTITIES/mobs_mc/description.txt | 1 - mods/ENTITIES/mobs_mc/mod.conf | 3 +++ mods/ENTITIES/mobs_mc_gameconfig/depends.txt | 2 -- mods/ENTITIES/mobs_mc_gameconfig/mod.conf | 2 ++ mods/ENVIRONMENT/lightning/depends.txt | 2 -- mods/ENVIRONMENT/lightning/description.txt | 1 - mods/ENVIRONMENT/lightning/mod.conf | 3 +++ mods/ENVIRONMENT/mcl_void_damage/depends.txt | 2 -- mods/ENVIRONMENT/mcl_void_damage/description.txt | 1 - mods/ENVIRONMENT/mcl_void_damage/mod.conf | 2 ++ mods/ENVIRONMENT/mcl_weather/depends.txt | 3 --- mods/ENVIRONMENT/mcl_weather/description.txt | 1 - mods/ENVIRONMENT/mcl_weather/mod.conf | 3 +++ mods/HELP/doc/description.txt | 1 - mods/HELP/doc/mod.conf | 2 ++ mods/HELP/mcl_craftguide/depends.txt | 6 ------ mods/HELP/mcl_craftguide/description.txt | 2 -- mods/HELP/mcl_craftguide/mod.conf | 4 ++++ mods/HELP/mcl_doc/depends.txt | 2 -- mods/HELP/mcl_doc/description.txt | 1 - mods/HELP/mcl_doc/mod.conf | 2 ++ mods/HELP/mcl_tt/depends.txt | 2 -- mods/HELP/mcl_tt/mod.conf | 2 ++ mods/HUD/awards/depends.txt | 2 -- mods/HUD/awards/description.txt | 1 - mods/HUD/awards/mod.conf | 1 + mods/HUD/mcl_achievements/depends.txt | 1 - mods/HUD/mcl_achievements/mod.conf | 1 + mods/HUD/mcl_base_textures/description.txt | 1 - mods/HUD/mcl_base_textures/mod.conf | 1 + mods/HUD/mcl_death_messages/description.txt | 1 - mods/HUD/mcl_death_messages/mod.conf | 1 + mods/HUD/mcl_formspec_prepend/depends.txt | 1 - mods/HUD/mcl_formspec_prepend/mod.conf | 1 + mods/HUD/mcl_hbarmor/description.txt | 1 - mods/HUD/mcl_hbarmor/mod.conf | 1 + mods/HUD/mcl_inventory/depends.txt | 8 -------- mods/HUD/mcl_inventory/description.txt | 1 - mods/HUD/mcl_inventory/mod.conf | 3 +++ mods/HUD/show_wielded_item/depends.txt | 1 - mods/HUD/show_wielded_item/description.txt | 1 - mods/HUD/show_wielded_item/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mcl_comparators/depends.txt | 4 ---- mods/ITEMS/REDSTONE/mcl_comparators/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mcl_dispensers/depends.txt | 12 ------------ mods/ITEMS/REDSTONE/mcl_dispensers/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mcl_droppers/depends.txt | 6 ------ mods/ITEMS/REDSTONE/mcl_droppers/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mcl_observers/depends.txt | 2 -- mods/ITEMS/REDSTONE/mcl_observers/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mesecons/depends.txt | 3 --- mods/ITEMS/REDSTONE/mesecons/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_alias/depends.txt | 1 - mods/ITEMS/REDSTONE/mesecons_alias/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mesecons_button/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_button/mod.conf | 3 +++ .../ITEMS/REDSTONE/mesecons_commandblock/depends.txt | 3 --- mods/ITEMS/REDSTONE/mesecons_commandblock/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_delayer/depends.txt | 3 --- mods/ITEMS/REDSTONE/mesecons_delayer/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_lightstone/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_lightstone/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_mvps/depends.txt | 1 - mods/ITEMS/REDSTONE/mesecons_mvps/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mesecons_noteblock/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_noteblock/mod.conf | 2 ++ mods/ITEMS/REDSTONE/mesecons_pistons/depends.txt | 5 ----- mods/ITEMS/REDSTONE/mesecons_pistons/mod.conf | 3 +++ .../REDSTONE/mesecons_pressureplates/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_pressureplates/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_solarpanel/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_solarpanel/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_torch/depends.txt | 3 --- mods/ITEMS/REDSTONE/mesecons_torch/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_walllever/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_walllever/mod.conf | 3 +++ mods/ITEMS/REDSTONE/mesecons_wires/depends.txt | 2 -- mods/ITEMS/REDSTONE/mesecons_wires/mod.conf | 3 +++ mods/ITEMS/mcl_anvils/depends.txt | 7 ------- mods/ITEMS/mcl_anvils/mod.conf | 2 ++ mods/ITEMS/mcl_armor/depends.txt | 6 ------ mods/ITEMS/mcl_armor/description.txt | 1 - mods/ITEMS/mcl_armor/mod.conf | 4 ++++ mods/ITEMS/mcl_armor_stand/depends.txt | 5 ----- mods/ITEMS/mcl_armor_stand/mod.conf | 3 +++ mods/ITEMS/mcl_banners/depends.txt | 6 ------ mods/ITEMS/mcl_banners/description.txt | 1 - mods/ITEMS/mcl_banners/mod.conf | 2 ++ mods/ITEMS/mcl_beds/depends.txt | 9 --------- mods/ITEMS/mcl_beds/mod.conf | 2 ++ mods/ITEMS/mcl_books/depends.txt | 5 ----- mods/ITEMS/mcl_books/mod.conf | 1 + mods/ITEMS/mcl_bows/depends.txt | 11 ----------- mods/ITEMS/mcl_bows/mod.conf | 3 +++ mods/ITEMS/mcl_buckets/depends.txt | 4 ---- mods/ITEMS/mcl_buckets/mod.conf | 3 +++ mods/ITEMS/mcl_cake/depends.txt | 7 ------- mods/ITEMS/mcl_cake/mod.conf | 2 ++ mods/ITEMS/mcl_cauldrons/depends.txt | 4 ---- mods/ITEMS/mcl_cauldrons/mod.conf | 2 ++ mods/ITEMS/mcl_chests/depends.txt | 8 -------- mods/ITEMS/mcl_chests/mod.conf | 3 +++ mods/ITEMS/mcl_clock/depends.txt | 4 ---- mods/ITEMS/mcl_clock/description.txt | 1 - mods/ITEMS/mcl_clock/mod.conf | 3 +++ mods/ITEMS/mcl_cocoas/depends.txt | 3 --- mods/ITEMS/mcl_cocoas/description.txt | 1 - mods/ITEMS/mcl_cocoas/mod.conf | 3 +++ mods/ITEMS/mcl_colorblocks/depends.txt | 5 ----- mods/ITEMS/mcl_colorblocks/description.txt | 1 - mods/ITEMS/mcl_colorblocks/mod.conf | 3 +++ mods/ITEMS/mcl_compass/depends.txt | 4 ---- mods/ITEMS/mcl_compass/description.txt | 1 - mods/ITEMS/mcl_compass/mod.conf | 3 +++ mods/ITEMS/mcl_core/depends.txt | 9 --------- mods/ITEMS/mcl_core/description.txt | 1 - mods/ITEMS/mcl_core/mod.conf | 3 +++ mods/ITEMS/mcl_crafting_table/depends.txt | 3 --- mods/ITEMS/mcl_crafting_table/description.txt | 1 - mods/ITEMS/mcl_crafting_table/mod.conf | 2 ++ mods/ITEMS/mcl_doors/depends.txt | 5 ----- mods/ITEMS/mcl_doors/mod.conf | 2 ++ mods/ITEMS/mcl_dye/depends.txt | 4 ---- mods/ITEMS/mcl_dye/mod.conf | 1 + mods/ITEMS/mcl_end/depends.txt | 5 ----- mods/ITEMS/mcl_end/mod.conf | 2 ++ mods/ITEMS/mcl_farming/depends.txt | 8 -------- mods/ITEMS/mcl_farming/mod.conf | 2 ++ mods/ITEMS/mcl_fences/depends.txt | 4 ---- mods/ITEMS/mcl_fences/mod.conf | 2 ++ mods/ITEMS/mcl_fire/depends.txt | 5 ----- mods/ITEMS/mcl_fire/mod.conf | 2 ++ mods/ITEMS/mcl_fishing/depends.txt | 5 ----- mods/ITEMS/mcl_fishing/description.txt | 1 - mods/ITEMS/mcl_fishing/mod.conf | 2 ++ mods/ITEMS/mcl_flowerpots/depends.txt | 5 ----- mods/ITEMS/mcl_flowerpots/mod.conf | 3 +++ mods/ITEMS/mcl_flowers/depends.txt | 5 ----- mods/ITEMS/mcl_flowers/mod.conf | 3 +++ mods/ITEMS/mcl_furnaces/depends.txt | 9 --------- mods/ITEMS/mcl_furnaces/mod.conf | 2 ++ mods/ITEMS/mcl_heads/depends.txt | 4 ---- mods/ITEMS/mcl_heads/description.txt | 1 - mods/ITEMS/mcl_heads/mod.conf | 3 +++ mods/ITEMS/mcl_hoppers/depends.txt | 6 ------ mods/ITEMS/mcl_hoppers/description.txt | 1 - mods/ITEMS/mcl_hoppers/mod.conf | 4 ++++ mods/ITEMS/mcl_itemframes/depends.txt | 3 --- mods/ITEMS/mcl_itemframes/mod.conf | 3 +++ mods/ITEMS/mcl_jukebox/depends.txt | 2 -- mods/ITEMS/mcl_jukebox/description.txt | 1 - mods/ITEMS/mcl_jukebox/mod.conf | 2 ++ mods/ITEMS/mcl_mobitems/depends.txt | 2 -- mods/ITEMS/mcl_mobitems/mod.conf | 1 + mods/ITEMS/mcl_mobspawners/depends.txt | 2 -- mods/ITEMS/mcl_mobspawners/mod.conf | 1 + mods/ITEMS/mcl_monster_eggs/depends.txt | 2 -- mods/ITEMS/mcl_monster_eggs/description.txt | 1 - mods/ITEMS/mcl_monster_eggs/mod.conf | 3 +++ mods/ITEMS/mcl_mushrooms/depends.txt | 3 --- mods/ITEMS/mcl_mushrooms/mod.conf | 2 ++ mods/ITEMS/mcl_nether/depends.txt | 8 -------- mods/ITEMS/mcl_nether/mod.conf | 2 ++ mods/ITEMS/mcl_ocean/depends.txt | 6 ------ mods/ITEMS/mcl_ocean/description.txt | 1 - mods/ITEMS/mcl_ocean/mod.conf | 2 ++ mods/ITEMS/mcl_portals/depends.txt | 9 --------- mods/ITEMS/mcl_portals/description.txt | 1 - mods/ITEMS/mcl_portals/mod.conf | 3 +++ mods/ITEMS/mcl_signs/depends.txt | 3 --- mods/ITEMS/mcl_signs/mod.conf | 1 + mods/ITEMS/mcl_sponges/depends.txt | 3 --- mods/ITEMS/mcl_sponges/description.txt | 1 - mods/ITEMS/mcl_sponges/mod.conf | 3 +++ mods/ITEMS/mcl_stairs/depends.txt | 5 ----- mods/ITEMS/mcl_stairs/mod.conf | 1 + mods/ITEMS/mcl_throwing/depends.txt | 4 ---- mods/ITEMS/mcl_throwing/mod.conf | 2 ++ mods/ITEMS/mcl_tnt/depends.txt | 7 ------- mods/ITEMS/mcl_tnt/mod.conf | 2 ++ mods/ITEMS/mcl_tools/depends.txt | 1 - mods/ITEMS/mcl_tools/mod.conf | 1 + mods/ITEMS/mcl_torches/depends.txt | 4 ---- mods/ITEMS/mcl_torches/description.txt | 1 - mods/ITEMS/mcl_torches/mod.conf | 3 +++ mods/ITEMS/mcl_totems/depends.txt | 1 - mods/ITEMS/mcl_totems/mod.conf | 2 ++ mods/ITEMS/mcl_walls/depends.txt | 6 ------ mods/ITEMS/mcl_walls/mod.conf | 3 +++ mods/ITEMS/mcl_wool/depends.txt | 2 -- mods/ITEMS/mcl_wool/mod.conf | 2 ++ mods/ITEMS/mclx_core/depends.txt | 2 -- mods/ITEMS/mclx_core/description.txt | 1 - mods/ITEMS/mclx_core/mod.conf | 3 +++ mods/ITEMS/mclx_fences/depends.txt | 1 - mods/ITEMS/mclx_fences/description.txt | 1 - mods/ITEMS/mclx_fences/mod.conf | 2 ++ mods/ITEMS/mclx_stairs/depends.txt | 8 -------- mods/ITEMS/mclx_stairs/description.txt | 1 - mods/ITEMS/mclx_stairs/mod.conf | 3 +++ mods/ITEMS/xpanes/depends.txt | 3 --- mods/ITEMS/xpanes/mod.conf | 3 +++ mods/MAPGEN/mcl_biomes/depends.txt | 8 -------- mods/MAPGEN/mcl_biomes/description.txt | 1 - mods/MAPGEN/mcl_biomes/mod.conf | 3 +++ mods/MAPGEN/mcl_dungeons/depends.txt | 7 ------- mods/MAPGEN/mcl_dungeons/description.txt | 1 - mods/MAPGEN/mcl_dungeons/mod.conf | 2 ++ mods/MAPGEN/mcl_mapgen_core/depends.txt | 11 ----------- mods/MAPGEN/mcl_mapgen_core/mod.conf | 2 ++ mods/MAPGEN/mcl_strongholds/depends.txt | 3 --- mods/MAPGEN/mcl_strongholds/description.txt | 1 - mods/MAPGEN/mcl_strongholds/mod.conf | 2 ++ mods/MAPGEN/mcl_structures/depends.txt | 1 - mods/MAPGEN/mcl_structures/mod.conf | 1 + mods/MAPGEN/mcl_villages/depends.txt | 7 ------- mods/MAPGEN/mcl_villages/mod.conf | 3 +++ mods/MAPGEN/tsm_railcorridors/depends.txt | 9 --------- mods/MAPGEN/tsm_railcorridors/description.txt | 1 - mods/MAPGEN/tsm_railcorridors/mod.conf | 2 ++ mods/MISC/mcl_commands/depends.txt | 1 - mods/MISC/mcl_commands/mod.conf | 2 ++ mods/MISC/mcl_privs/description.txt | 1 - mods/MISC/mcl_privs/mod.conf | 2 ++ mods/MISC/mcl_temp_helper_recipes/depends.txt | 7 ------- mods/MISC/mcl_temp_helper_recipes/mod.conf | 2 ++ mods/MISC/mcl_wip/depends.txt | 10 ---------- mods/MISC/mcl_wip/description.txt | 1 - mods/MISC/mcl_wip/mod.conf | 2 ++ mods/PLAYER/mcl_death_drop/depends.txt | 2 -- mods/PLAYER/mcl_death_drop/description.txt | 1 - mods/PLAYER/mcl_death_drop/mod.conf | 2 ++ mods/PLAYER/mcl_hunger/depends.txt | 2 -- mods/PLAYER/mcl_hunger/description.txt | 1 - mods/PLAYER/mcl_hunger/mod.conf | 3 +++ mods/PLAYER/mcl_meshhand/depends.txt | 2 -- mods/PLAYER/mcl_meshhand/description.txt | 1 - mods/PLAYER/mcl_meshhand/mod.conf | 3 +++ mods/PLAYER/mcl_playerinfo/depends.txt | 4 ---- mods/PLAYER/mcl_playerinfo/mod.conf | 1 + mods/PLAYER/mcl_playerplus/depends.txt | 10 ---------- mods/PLAYER/mcl_playerplus/description.txt | 1 - mods/PLAYER/mcl_playerplus/mod.conf | 2 ++ mods/PLAYER/mcl_skins/depends.txt | 4 ---- mods/PLAYER/mcl_skins/description.txt | 1 - mods/PLAYER/mcl_skins/mod.conf | 3 +++ mods/PLAYER/mcl_spawn/depends.txt | 1 - mods/PLAYER/mcl_spawn/description.txt | 1 - mods/PLAYER/mcl_spawn/mod.conf | 2 ++ mods/PLAYER/mcl_sprint/depends.txt | 3 --- mods/PLAYER/mcl_sprint/mod.conf | 1 + mods/PLAYER/playerphysics/description.txt | 1 - mods/PLAYER/playerphysics/mod.conf | 1 + mods/PLAYER/wieldview/depends.txt | 1 - mods/PLAYER/wieldview/description.txt | 1 - mods/PLAYER/wieldview/mod.conf | 3 +++ 288 files changed, 272 insertions(+), 526 deletions(-) delete mode 100644 mods/CORE/mcl_attached/description.txt create mode 100644 mods/CORE/mcl_attached/mod.conf delete mode 100644 mods/CORE/mcl_init/description.txt delete mode 100644 mods/CORE/mcl_loot/description.txt delete mode 100644 mods/CORE/mcl_particles/description.txt delete mode 100644 mods/CORE/mcl_sounds/description.txt delete mode 100644 mods/CORE/mcl_util/depends.txt delete mode 100644 mods/CORE/mcl_util/description.txt delete mode 100644 mods/CORE/mcl_worlds/depends.txt delete mode 100644 mods/CORE/mcl_worlds/description.txt create mode 100644 mods/CORE/mcl_worlds/mod.conf delete mode 100644 mods/ENTITIES/drippingwater/depends.txt create mode 100644 mods/ENTITIES/drippingwater/mod.conf delete mode 100644 mods/ENTITIES/mcl_boats/depends.txt delete mode 100644 mods/ENTITIES/mcl_boats/description.txt delete mode 100644 mods/ENTITIES/mcl_falling_nodes/description.txt delete mode 100644 mods/ENTITIES/mcl_item_entity/depends.txt delete mode 100644 mods/ENTITIES/mcl_item_entity/description.txt delete mode 100644 mods/ENTITIES/mcl_minecarts/depends.txt delete mode 100644 mods/ENTITIES/mcl_minecarts/description.txt delete mode 100644 mods/ENTITIES/mcl_mobs/description.txt delete mode 100644 mods/ENTITIES/mobs_mc/depends.txt delete mode 100644 mods/ENTITIES/mobs_mc/description.txt delete mode 100644 mods/ENTITIES/mobs_mc_gameconfig/depends.txt create mode 100644 mods/ENTITIES/mobs_mc_gameconfig/mod.conf delete mode 100644 mods/ENVIRONMENT/lightning/depends.txt delete mode 100644 mods/ENVIRONMENT/lightning/description.txt delete mode 100644 mods/ENVIRONMENT/mcl_void_damage/depends.txt delete mode 100644 mods/ENVIRONMENT/mcl_void_damage/description.txt delete mode 100644 mods/ENVIRONMENT/mcl_weather/depends.txt delete mode 100644 mods/ENVIRONMENT/mcl_weather/description.txt delete mode 100644 mods/HELP/doc/description.txt create mode 100644 mods/HELP/doc/mod.conf delete mode 100644 mods/HELP/mcl_craftguide/depends.txt delete mode 100644 mods/HELP/mcl_craftguide/description.txt delete mode 100644 mods/HELP/mcl_doc/depends.txt delete mode 100644 mods/HELP/mcl_doc/description.txt delete mode 100644 mods/HELP/mcl_tt/depends.txt create mode 100644 mods/HELP/mcl_tt/mod.conf delete mode 100644 mods/HUD/awards/depends.txt delete mode 100644 mods/HUD/awards/description.txt delete mode 100644 mods/HUD/mcl_achievements/depends.txt delete mode 100644 mods/HUD/mcl_base_textures/description.txt delete mode 100644 mods/HUD/mcl_death_messages/description.txt delete mode 100644 mods/HUD/mcl_formspec_prepend/depends.txt delete mode 100644 mods/HUD/mcl_hbarmor/description.txt delete mode 100644 mods/HUD/mcl_inventory/depends.txt delete mode 100644 mods/HUD/mcl_inventory/description.txt delete mode 100644 mods/HUD/show_wielded_item/depends.txt delete mode 100644 mods/HUD/show_wielded_item/description.txt delete mode 100644 mods/ITEMS/REDSTONE/mcl_comparators/depends.txt delete mode 100644 mods/ITEMS/REDSTONE/mcl_dispensers/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mcl_dispensers/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mcl_droppers/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mcl_droppers/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mcl_observers/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mcl_observers/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_alias/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_alias/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_button/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_button/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_commandblock/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_commandblock/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_delayer/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_delayer/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_lightstone/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_lightstone/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_mvps/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_mvps/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_noteblock/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_noteblock/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_pistons/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_pistons/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_pressureplates/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_pressureplates/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_solarpanel/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_solarpanel/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_torch/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_torch/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_walllever/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_walllever/mod.conf delete mode 100644 mods/ITEMS/REDSTONE/mesecons_wires/depends.txt create mode 100644 mods/ITEMS/REDSTONE/mesecons_wires/mod.conf delete mode 100644 mods/ITEMS/mcl_anvils/depends.txt delete mode 100644 mods/ITEMS/mcl_armor/depends.txt delete mode 100644 mods/ITEMS/mcl_armor/description.txt create mode 100644 mods/ITEMS/mcl_armor/mod.conf delete mode 100644 mods/ITEMS/mcl_armor_stand/depends.txt create mode 100644 mods/ITEMS/mcl_armor_stand/mod.conf delete mode 100644 mods/ITEMS/mcl_banners/depends.txt delete mode 100644 mods/ITEMS/mcl_banners/description.txt delete mode 100644 mods/ITEMS/mcl_beds/depends.txt delete mode 100644 mods/ITEMS/mcl_books/depends.txt delete mode 100644 mods/ITEMS/mcl_bows/depends.txt create mode 100644 mods/ITEMS/mcl_bows/mod.conf delete mode 100644 mods/ITEMS/mcl_buckets/depends.txt create mode 100644 mods/ITEMS/mcl_buckets/mod.conf delete mode 100644 mods/ITEMS/mcl_cake/depends.txt delete mode 100644 mods/ITEMS/mcl_cauldrons/depends.txt delete mode 100644 mods/ITEMS/mcl_chests/depends.txt create mode 100644 mods/ITEMS/mcl_chests/mod.conf delete mode 100644 mods/ITEMS/mcl_clock/depends.txt delete mode 100644 mods/ITEMS/mcl_clock/description.txt delete mode 100644 mods/ITEMS/mcl_cocoas/depends.txt delete mode 100644 mods/ITEMS/mcl_cocoas/description.txt delete mode 100644 mods/ITEMS/mcl_colorblocks/depends.txt delete mode 100644 mods/ITEMS/mcl_colorblocks/description.txt delete mode 100644 mods/ITEMS/mcl_compass/depends.txt delete mode 100644 mods/ITEMS/mcl_compass/description.txt delete mode 100644 mods/ITEMS/mcl_core/depends.txt delete mode 100644 mods/ITEMS/mcl_core/description.txt delete mode 100644 mods/ITEMS/mcl_crafting_table/depends.txt delete mode 100644 mods/ITEMS/mcl_crafting_table/description.txt delete mode 100644 mods/ITEMS/mcl_doors/depends.txt delete mode 100644 mods/ITEMS/mcl_dye/depends.txt delete mode 100644 mods/ITEMS/mcl_end/depends.txt create mode 100644 mods/ITEMS/mcl_end/mod.conf delete mode 100644 mods/ITEMS/mcl_farming/depends.txt delete mode 100644 mods/ITEMS/mcl_fences/depends.txt delete mode 100644 mods/ITEMS/mcl_fire/depends.txt delete mode 100644 mods/ITEMS/mcl_fishing/depends.txt delete mode 100644 mods/ITEMS/mcl_fishing/description.txt delete mode 100644 mods/ITEMS/mcl_flowerpots/depends.txt create mode 100644 mods/ITEMS/mcl_flowerpots/mod.conf delete mode 100644 mods/ITEMS/mcl_flowers/depends.txt create mode 100644 mods/ITEMS/mcl_flowers/mod.conf delete mode 100644 mods/ITEMS/mcl_furnaces/depends.txt delete mode 100644 mods/ITEMS/mcl_heads/depends.txt delete mode 100644 mods/ITEMS/mcl_heads/description.txt delete mode 100644 mods/ITEMS/mcl_hoppers/depends.txt delete mode 100644 mods/ITEMS/mcl_hoppers/description.txt create mode 100644 mods/ITEMS/mcl_hoppers/mod.conf delete mode 100644 mods/ITEMS/mcl_itemframes/depends.txt create mode 100644 mods/ITEMS/mcl_itemframes/mod.conf delete mode 100644 mods/ITEMS/mcl_jukebox/depends.txt delete mode 100644 mods/ITEMS/mcl_jukebox/description.txt delete mode 100644 mods/ITEMS/mcl_mobitems/depends.txt delete mode 100644 mods/ITEMS/mcl_mobspawners/depends.txt delete mode 100644 mods/ITEMS/mcl_monster_eggs/depends.txt delete mode 100644 mods/ITEMS/mcl_monster_eggs/description.txt create mode 100644 mods/ITEMS/mcl_monster_eggs/mod.conf delete mode 100644 mods/ITEMS/mcl_mushrooms/depends.txt delete mode 100644 mods/ITEMS/mcl_nether/depends.txt delete mode 100644 mods/ITEMS/mcl_ocean/depends.txt delete mode 100644 mods/ITEMS/mcl_ocean/description.txt delete mode 100644 mods/ITEMS/mcl_portals/depends.txt delete mode 100644 mods/ITEMS/mcl_portals/description.txt delete mode 100644 mods/ITEMS/mcl_signs/depends.txt delete mode 100644 mods/ITEMS/mcl_sponges/depends.txt delete mode 100644 mods/ITEMS/mcl_sponges/description.txt delete mode 100644 mods/ITEMS/mcl_stairs/depends.txt delete mode 100644 mods/ITEMS/mcl_throwing/depends.txt delete mode 100644 mods/ITEMS/mcl_tnt/depends.txt delete mode 100644 mods/ITEMS/mcl_tools/depends.txt delete mode 100644 mods/ITEMS/mcl_torches/depends.txt delete mode 100644 mods/ITEMS/mcl_torches/description.txt delete mode 100644 mods/ITEMS/mcl_totems/depends.txt create mode 100644 mods/ITEMS/mcl_totems/mod.conf delete mode 100644 mods/ITEMS/mcl_walls/depends.txt create mode 100644 mods/ITEMS/mcl_walls/mod.conf delete mode 100644 mods/ITEMS/mcl_wool/depends.txt delete mode 100644 mods/ITEMS/mclx_core/depends.txt delete mode 100644 mods/ITEMS/mclx_core/description.txt delete mode 100644 mods/ITEMS/mclx_fences/depends.txt delete mode 100644 mods/ITEMS/mclx_fences/description.txt delete mode 100644 mods/ITEMS/mclx_stairs/depends.txt delete mode 100644 mods/ITEMS/mclx_stairs/description.txt delete mode 100644 mods/ITEMS/xpanes/depends.txt create mode 100644 mods/ITEMS/xpanes/mod.conf delete mode 100644 mods/MAPGEN/mcl_biomes/depends.txt delete mode 100644 mods/MAPGEN/mcl_biomes/description.txt create mode 100644 mods/MAPGEN/mcl_biomes/mod.conf delete mode 100644 mods/MAPGEN/mcl_dungeons/depends.txt delete mode 100644 mods/MAPGEN/mcl_dungeons/description.txt delete mode 100644 mods/MAPGEN/mcl_mapgen_core/depends.txt delete mode 100644 mods/MAPGEN/mcl_strongholds/depends.txt delete mode 100644 mods/MAPGEN/mcl_strongholds/description.txt delete mode 100644 mods/MAPGEN/mcl_structures/depends.txt delete mode 100644 mods/MAPGEN/mcl_villages/depends.txt create mode 100644 mods/MAPGEN/mcl_villages/mod.conf delete mode 100644 mods/MAPGEN/tsm_railcorridors/depends.txt delete mode 100644 mods/MAPGEN/tsm_railcorridors/description.txt delete mode 100644 mods/MISC/mcl_commands/depends.txt create mode 100644 mods/MISC/mcl_commands/mod.conf delete mode 100644 mods/MISC/mcl_privs/description.txt create mode 100644 mods/MISC/mcl_privs/mod.conf delete mode 100644 mods/MISC/mcl_temp_helper_recipes/depends.txt create mode 100644 mods/MISC/mcl_temp_helper_recipes/mod.conf delete mode 100644 mods/MISC/mcl_wip/depends.txt delete mode 100644 mods/MISC/mcl_wip/description.txt delete mode 100644 mods/PLAYER/mcl_death_drop/depends.txt delete mode 100644 mods/PLAYER/mcl_death_drop/description.txt delete mode 100644 mods/PLAYER/mcl_hunger/depends.txt delete mode 100644 mods/PLAYER/mcl_hunger/description.txt delete mode 100644 mods/PLAYER/mcl_meshhand/depends.txt delete mode 100644 mods/PLAYER/mcl_meshhand/description.txt delete mode 100644 mods/PLAYER/mcl_playerinfo/depends.txt delete mode 100644 mods/PLAYER/mcl_playerplus/depends.txt delete mode 100644 mods/PLAYER/mcl_playerplus/description.txt delete mode 100644 mods/PLAYER/mcl_skins/depends.txt delete mode 100644 mods/PLAYER/mcl_skins/description.txt delete mode 100644 mods/PLAYER/mcl_spawn/depends.txt delete mode 100644 mods/PLAYER/mcl_spawn/description.txt delete mode 100644 mods/PLAYER/mcl_sprint/depends.txt delete mode 100644 mods/PLAYER/playerphysics/description.txt delete mode 100644 mods/PLAYER/wieldview/depends.txt delete mode 100644 mods/PLAYER/wieldview/description.txt create mode 100644 mods/PLAYER/wieldview/mod.conf diff --git a/mods/CORE/mcl_attached/description.txt b/mods/CORE/mcl_attached/description.txt deleted file mode 100644 index 3532db31..00000000 --- a/mods/CORE/mcl_attached/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds additional ways for nodes to be attached. diff --git a/mods/CORE/mcl_attached/mod.conf b/mods/CORE/mcl_attached/mod.conf new file mode 100644 index 00000000..9de0ac44 --- /dev/null +++ b/mods/CORE/mcl_attached/mod.conf @@ -0,0 +1,2 @@ +name = mcl_attached +description = Adds additional ways for nodes to be attached. diff --git a/mods/CORE/mcl_init/description.txt b/mods/CORE/mcl_init/description.txt deleted file mode 100644 index 4ab7458f..00000000 --- a/mods/CORE/mcl_init/description.txt +++ /dev/null @@ -1 +0,0 @@ -Initialization mod of MineClone 2. Defines some common shared variables and sets up initial default settings which have to be set at the beginning. diff --git a/mods/CORE/mcl_init/mod.conf b/mods/CORE/mcl_init/mod.conf index 5a3e4b6b..bdaccc37 100644 --- a/mods/CORE/mcl_init/mod.conf +++ b/mods/CORE/mcl_init/mod.conf @@ -1 +1,2 @@ name = mcl_init +description = Initialization mod of MineClone 2. Defines some common shared variables and sets up initial default settings which have to be set at the beginning. diff --git a/mods/CORE/mcl_loot/description.txt b/mods/CORE/mcl_loot/description.txt deleted file mode 100644 index 30ba9a6f..00000000 --- a/mods/CORE/mcl_loot/description.txt +++ /dev/null @@ -1 +0,0 @@ -API for filling a chest with random treasures. diff --git a/mods/CORE/mcl_loot/mod.conf b/mods/CORE/mcl_loot/mod.conf index 8406dcc2..5eadd857 100644 --- a/mods/CORE/mcl_loot/mod.conf +++ b/mods/CORE/mcl_loot/mod.conf @@ -1 +1,2 @@ name = mcl_loot +description = API for filling a chest with random treasures. diff --git a/mods/CORE/mcl_particles/description.txt b/mods/CORE/mcl_particles/description.txt deleted file mode 100644 index 62d5cd61..00000000 --- a/mods/CORE/mcl_particles/description.txt +++ /dev/null @@ -1 +0,0 @@ -Contains particle images of MineClone 2. No code. diff --git a/mods/CORE/mcl_particles/mod.conf b/mods/CORE/mcl_particles/mod.conf index f7be8039..2a7214ff 100644 --- a/mods/CORE/mcl_particles/mod.conf +++ b/mods/CORE/mcl_particles/mod.conf @@ -1 +1,2 @@ name = mcl_particles +description = Contains particle images of MineClone 2. No code. diff --git a/mods/CORE/mcl_sounds/description.txt b/mods/CORE/mcl_sounds/description.txt deleted file mode 100644 index 26c21e3b..00000000 --- a/mods/CORE/mcl_sounds/description.txt +++ /dev/null @@ -1 +0,0 @@ -This mod contains the core sounds of MineClone 2 as well as helper function for mods to access them. diff --git a/mods/CORE/mcl_sounds/mod.conf b/mods/CORE/mcl_sounds/mod.conf index 3227e612..e87092a5 100644 --- a/mods/CORE/mcl_sounds/mod.conf +++ b/mods/CORE/mcl_sounds/mod.conf @@ -1 +1,2 @@ name = mcl_sounds +description = This mod contains the core sounds of MineClone 2 as well as helper function for mods to access them. diff --git a/mods/CORE/mcl_util/depends.txt b/mods/CORE/mcl_util/depends.txt deleted file mode 100644 index 3b355984..00000000 --- a/mods/CORE/mcl_util/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_init diff --git a/mods/CORE/mcl_util/description.txt b/mods/CORE/mcl_util/description.txt deleted file mode 100644 index c778045c..00000000 --- a/mods/CORE/mcl_util/description.txt +++ /dev/null @@ -1 +0,0 @@ -Helper functions for MineClone 2. diff --git a/mods/CORE/mcl_util/mod.conf b/mods/CORE/mcl_util/mod.conf index e45f9124..f63ca1d0 100644 --- a/mods/CORE/mcl_util/mod.conf +++ b/mods/CORE/mcl_util/mod.conf @@ -1 +1,3 @@ name = mcl_util +description = Helper functions for MineClone 2. +depends = mcl_init diff --git a/mods/CORE/mcl_worlds/depends.txt b/mods/CORE/mcl_worlds/depends.txt deleted file mode 100644 index 3b355984..00000000 --- a/mods/CORE/mcl_worlds/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_init diff --git a/mods/CORE/mcl_worlds/description.txt b/mods/CORE/mcl_worlds/description.txt deleted file mode 100644 index 470cf7a8..00000000 --- a/mods/CORE/mcl_worlds/description.txt +++ /dev/null @@ -1 +0,0 @@ -Utility functions for worlds and the “dimensions”. diff --git a/mods/CORE/mcl_worlds/mod.conf b/mods/CORE/mcl_worlds/mod.conf new file mode 100644 index 00000000..33b1c5df --- /dev/null +++ b/mods/CORE/mcl_worlds/mod.conf @@ -0,0 +1,3 @@ +name = mcl_worlds +description = Utility functions for worlds and the “dimensions”. +depends = mcl_init diff --git a/mods/ENTITIES/drippingwater/depends.txt b/mods/ENTITIES/drippingwater/depends.txt deleted file mode 100644 index 315237e0..00000000 --- a/mods/ENTITIES/drippingwater/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_core diff --git a/mods/ENTITIES/drippingwater/mod.conf b/mods/ENTITIES/drippingwater/mod.conf new file mode 100644 index 00000000..58626465 --- /dev/null +++ b/mods/ENTITIES/drippingwater/mod.conf @@ -0,0 +1,2 @@ +name = drippingwater +depends = mcl_core diff --git a/mods/ENTITIES/mcl_boats/depends.txt b/mods/ENTITIES/mcl_boats/depends.txt deleted file mode 100644 index 7a3ef812..00000000 --- a/mods/ENTITIES/mcl_boats/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_player -mcl_core? -doc_identifier? diff --git a/mods/ENTITIES/mcl_boats/description.txt b/mods/ENTITIES/mcl_boats/description.txt deleted file mode 100644 index 65a979e8..00000000 --- a/mods/ENTITIES/mcl_boats/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds drivable boats. diff --git a/mods/ENTITIES/mcl_boats/mod.conf b/mods/ENTITIES/mcl_boats/mod.conf index f14456c5..e88c6ba0 100644 --- a/mods/ENTITIES/mcl_boats/mod.conf +++ b/mods/ENTITIES/mcl_boats/mod.conf @@ -1 +1,4 @@ name = mcl_boats +description = Adds drivable boats. +depends = mcl_player +optional_depends = mcl_core, doc_identifier diff --git a/mods/ENTITIES/mcl_falling_nodes/description.txt b/mods/ENTITIES/mcl_falling_nodes/description.txt deleted file mode 100644 index 8b436bf2..00000000 --- a/mods/ENTITIES/mcl_falling_nodes/description.txt +++ /dev/null @@ -1 +0,0 @@ -Falling node entities, Minecraft-style diff --git a/mods/ENTITIES/mcl_falling_nodes/mod.conf b/mods/ENTITIES/mcl_falling_nodes/mod.conf index 032b7502..d522ee73 100644 --- a/mods/ENTITIES/mcl_falling_nodes/mod.conf +++ b/mods/ENTITIES/mcl_falling_nodes/mod.conf @@ -1 +1,2 @@ name = mcl_falling_nodes +description = Falling node entities, Minecraft-style diff --git a/mods/ENTITIES/mcl_item_entity/depends.txt b/mods/ENTITIES/mcl_item_entity/depends.txt deleted file mode 100644 index f8027485..00000000 --- a/mods/ENTITIES/mcl_item_entity/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -flowlib -mcl_enchanting diff --git a/mods/ENTITIES/mcl_item_entity/description.txt b/mods/ENTITIES/mcl_item_entity/description.txt deleted file mode 100644 index dba26fb6..00000000 --- a/mods/ENTITIES/mcl_item_entity/description.txt +++ /dev/null @@ -1 +0,0 @@ -Dropped items will be attracted to the player like a magnet. diff --git a/mods/ENTITIES/mcl_item_entity/mod.conf b/mods/ENTITIES/mcl_item_entity/mod.conf index 9f35f5ed..59bb0f05 100644 --- a/mods/ENTITIES/mcl_item_entity/mod.conf +++ b/mods/ENTITIES/mcl_item_entity/mod.conf @@ -1 +1,3 @@ name = mcl_item_entity +description = Dropped items will be attracted to the player like a magnet. +depends = flowlib, mcl_enchanting diff --git a/mods/ENTITIES/mcl_minecarts/depends.txt b/mods/ENTITIES/mcl_minecarts/depends.txt deleted file mode 100644 index cdf7feb5..00000000 --- a/mods/ENTITIES/mcl_minecarts/depends.txt +++ /dev/null @@ -1,12 +0,0 @@ -mcl_explosions -mcl_core -mcl_sounds -mcl_player -mcl_achievements -mcl_chests -mcl_furnaces -mesecons_commandblock -mcl_hoppers -mcl_tnt -mesecons -doc_identifier? diff --git a/mods/ENTITIES/mcl_minecarts/description.txt b/mods/ENTITIES/mcl_minecarts/description.txt deleted file mode 100644 index 27f6c313..00000000 --- a/mods/ENTITIES/mcl_minecarts/description.txt +++ /dev/null @@ -1 +0,0 @@ -Minecarts are vehicles to move players quickly on rails. diff --git a/mods/ENTITIES/mcl_minecarts/mod.conf b/mods/ENTITIES/mcl_minecarts/mod.conf index 5661f8b9..2bf23c0e 100644 --- a/mods/ENTITIES/mcl_minecarts/mod.conf +++ b/mods/ENTITIES/mcl_minecarts/mod.conf @@ -1 +1,4 @@ name = mcl_minecarts +description = Minecarts are vehicles to move players quickly on rails. +depends = mcl_explosions, mcl_core, mcl_sounds, mcl_player, mcl_achievements, mcl_chests, mcl_furnaces, mesecons_commandblock, mcl_hoppers, mcl_tnt, mesecons +optional_depends = doc_identifier diff --git a/mods/ENTITIES/mcl_mobs/description.txt b/mods/ENTITIES/mcl_mobs/description.txt deleted file mode 100644 index a426a100..00000000 --- a/mods/ENTITIES/mcl_mobs/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a mob API for mods to add animals or monsters, etc. diff --git a/mods/ENTITIES/mcl_mobs/mod.conf b/mods/ENTITIES/mcl_mobs/mod.conf index c3d97137..c25ccd80 100644 --- a/mods/ENTITIES/mcl_mobs/mod.conf +++ b/mods/ENTITIES/mcl_mobs/mod.conf @@ -1,3 +1,4 @@ name = mcl_mobs depends = mcl_particles optional_depends = mcl_weather, mcl_explosions, mcl_hunger, mcl_worlds, invisibility, lucky_block, cmi, doc_identifier, mcl_armor, mcl_portals, mcl_experience +description = Adds a mob API for mods to add animals or monsters, etc. diff --git a/mods/ENTITIES/mobs_mc/depends.txt b/mods/ENTITIES/mobs_mc/depends.txt deleted file mode 100644 index 4a275666..00000000 --- a/mods/ENTITIES/mobs_mc/depends.txt +++ /dev/null @@ -1,12 +0,0 @@ -mcl_init -mcl_particles -default? -mcl_mobs -mcl_tnt? -mcl_bows? -mcl_throwing? -mcl_fishing? -bones? -mesecons_materials? -mobs_mc_gameconfig? -doc_items? diff --git a/mods/ENTITIES/mobs_mc/description.txt b/mods/ENTITIES/mobs_mc/description.txt deleted file mode 100644 index c57195fe..00000000 --- a/mods/ENTITIES/mobs_mc/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds Minecraft-like monsters and animals. diff --git a/mods/ENTITIES/mobs_mc/mod.conf b/mods/ENTITIES/mobs_mc/mod.conf index cd4f98c7..9f7da0e1 100644 --- a/mods/ENTITIES/mobs_mc/mod.conf +++ b/mods/ENTITIES/mobs_mc/mod.conf @@ -1 +1,4 @@ name = mobs_mc +description = Adds Minecraft-like monsters and animals. +depends = mcl_init, mcl_particles, mcl_mobs +optional_depends = default, mcl_tnt, mcl_bows, mcl_throwing, mcl_fishing, bones, mesecons_materials, mobs_mc_gameconfig, doc_items diff --git a/mods/ENTITIES/mobs_mc_gameconfig/depends.txt b/mods/ENTITIES/mobs_mc_gameconfig/depends.txt deleted file mode 100644 index 2f89674f..00000000 --- a/mods/ENTITIES/mobs_mc_gameconfig/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_init -mcl_core diff --git a/mods/ENTITIES/mobs_mc_gameconfig/mod.conf b/mods/ENTITIES/mobs_mc_gameconfig/mod.conf new file mode 100644 index 00000000..5709db5a --- /dev/null +++ b/mods/ENTITIES/mobs_mc_gameconfig/mod.conf @@ -0,0 +1,2 @@ +name = mobs_mc_gameconfig +depends = mcl_init, mcl_core diff --git a/mods/ENVIRONMENT/lightning/depends.txt b/mods/ENVIRONMENT/lightning/depends.txt deleted file mode 100644 index 356c2f18..00000000 --- a/mods/ENVIRONMENT/lightning/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_fire -mcl_death_messages? diff --git a/mods/ENVIRONMENT/lightning/description.txt b/mods/ENVIRONMENT/lightning/description.txt deleted file mode 100644 index 98fdb362..00000000 --- a/mods/ENVIRONMENT/lightning/description.txt +++ /dev/null @@ -1 +0,0 @@ -A mod that adds thunder and lightning effects. diff --git a/mods/ENVIRONMENT/lightning/mod.conf b/mods/ENVIRONMENT/lightning/mod.conf index 948a4075..9dc172f7 100644 --- a/mods/ENVIRONMENT/lightning/mod.conf +++ b/mods/ENVIRONMENT/lightning/mod.conf @@ -1 +1,4 @@ name = lightning +description = A mod that adds thunder and lightning effects. +depends = mcl_fire +optional_depends = mcl_death_messages diff --git a/mods/ENVIRONMENT/mcl_void_damage/depends.txt b/mods/ENVIRONMENT/mcl_void_damage/depends.txt deleted file mode 100644 index e134aeef..00000000 --- a/mods/ENVIRONMENT/mcl_void_damage/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_worlds -mcl_death_messages diff --git a/mods/ENVIRONMENT/mcl_void_damage/description.txt b/mods/ENVIRONMENT/mcl_void_damage/description.txt deleted file mode 100644 index ac7e3d8c..00000000 --- a/mods/ENVIRONMENT/mcl_void_damage/description.txt +++ /dev/null @@ -1 +0,0 @@ -Deal damage to entities stuck in the deep void diff --git a/mods/ENVIRONMENT/mcl_void_damage/mod.conf b/mods/ENVIRONMENT/mcl_void_damage/mod.conf index 7e0ea4ba..12afe43c 100644 --- a/mods/ENVIRONMENT/mcl_void_damage/mod.conf +++ b/mods/ENVIRONMENT/mcl_void_damage/mod.conf @@ -1 +1,3 @@ name = mcl_void_damage +description = Deal damage to entities stuck in the deep void +depends = mcl_worlds, mcl_death_messages diff --git a/mods/ENVIRONMENT/mcl_weather/depends.txt b/mods/ENVIRONMENT/mcl_weather/depends.txt deleted file mode 100644 index 0e5110c4..00000000 --- a/mods/ENVIRONMENT/mcl_weather/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_init -mcl_worlds -lightning? diff --git a/mods/ENVIRONMENT/mcl_weather/description.txt b/mods/ENVIRONMENT/mcl_weather/description.txt deleted file mode 100644 index 3f28b271..00000000 --- a/mods/ENVIRONMENT/mcl_weather/description.txt +++ /dev/null @@ -1 +0,0 @@ -Weather and sky handling: Rain, snow, thunderstorm, End and Nether ambience diff --git a/mods/ENVIRONMENT/mcl_weather/mod.conf b/mods/ENVIRONMENT/mcl_weather/mod.conf index 4cc16984..97ce12b0 100644 --- a/mods/ENVIRONMENT/mcl_weather/mod.conf +++ b/mods/ENVIRONMENT/mcl_weather/mod.conf @@ -1 +1,4 @@ name = mcl_weather +description = Weather and sky handling: Rain, snow, thunderstorm, End and Nether ambience +depends = mcl_init, mcl_worlds +optional_depends = lightning diff --git a/mods/HELP/doc/description.txt b/mods/HELP/doc/description.txt deleted file mode 100644 index 59a7a4c2..00000000 --- a/mods/HELP/doc/description.txt +++ /dev/null @@ -1 +0,0 @@ -Provides an extensible in-game help with texts about gameplay basics (such a crafting), items and advanced usage. diff --git a/mods/HELP/doc/mod.conf b/mods/HELP/doc/mod.conf new file mode 100644 index 00000000..f1268957 --- /dev/null +++ b/mods/HELP/doc/mod.conf @@ -0,0 +1,2 @@ +name = doc +description = Provides an extensible in-game help with texts about gameplay basics (such a crafting), items and advanced usage. diff --git a/mods/HELP/mcl_craftguide/depends.txt b/mods/HELP/mcl_craftguide/depends.txt deleted file mode 100644 index 5bff1157..00000000 --- a/mods/HELP/mcl_craftguide/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_core -mcl_compass -mcl_clock -doc -sfinv? -sfinv_buttons? diff --git a/mods/HELP/mcl_craftguide/description.txt b/mods/HELP/mcl_craftguide/description.txt deleted file mode 100644 index b5c05403..00000000 --- a/mods/HELP/mcl_craftguide/description.txt +++ /dev/null @@ -1,2 +0,0 @@ -The most comprehensive Crafting Guide -on Minetest. diff --git a/mods/HELP/mcl_craftguide/mod.conf b/mods/HELP/mcl_craftguide/mod.conf index d51c4541..474809dc 100644 --- a/mods/HELP/mcl_craftguide/mod.conf +++ b/mods/HELP/mcl_craftguide/mod.conf @@ -1 +1,5 @@ name = mcl_craftguide +description = The most comprehensive Crafting Guide +on Minetest. +depends = mcl_core, mcl_compass, mcl_clock, doc +optional_depends = sfinv, sfinv_buttons diff --git a/mods/HELP/mcl_doc/depends.txt b/mods/HELP/mcl_doc/depends.txt deleted file mode 100644 index 93440a29..00000000 --- a/mods/HELP/mcl_doc/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -doc -doc_items diff --git a/mods/HELP/mcl_doc/description.txt b/mods/HELP/mcl_doc/description.txt deleted file mode 100644 index 4ae29f50..00000000 --- a/mods/HELP/mcl_doc/description.txt +++ /dev/null @@ -1 +0,0 @@ -This MineClone 2 mod sets up and configures the Help modpack mods to tailor the help towards MineClone 2. diff --git a/mods/HELP/mcl_doc/mod.conf b/mods/HELP/mcl_doc/mod.conf index f5c27d08..176201ad 100644 --- a/mods/HELP/mcl_doc/mod.conf +++ b/mods/HELP/mcl_doc/mod.conf @@ -1 +1,3 @@ name = mcl_doc +description = This MineClone 2 mod sets up and configures the Help modpack mods to tailor the help towards MineClone 2. +depends = doc, doc_items diff --git a/mods/HELP/mcl_tt/depends.txt b/mods/HELP/mcl_tt/depends.txt deleted file mode 100644 index 12e5a198..00000000 --- a/mods/HELP/mcl_tt/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tt -mcl_enchanting diff --git a/mods/HELP/mcl_tt/mod.conf b/mods/HELP/mcl_tt/mod.conf new file mode 100644 index 00000000..d2daff9f --- /dev/null +++ b/mods/HELP/mcl_tt/mod.conf @@ -0,0 +1,2 @@ +name = mcl_tt +depends = tt, mcl_enchanting diff --git a/mods/HUD/awards/depends.txt b/mods/HUD/awards/depends.txt deleted file mode 100644 index 80a448a4..00000000 --- a/mods/HUD/awards/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -sfinv? -unified_inventory? diff --git a/mods/HUD/awards/description.txt b/mods/HUD/awards/description.txt deleted file mode 100644 index f2b9944c..00000000 --- a/mods/HUD/awards/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds achievements to Minetest, and an API to register new ones. diff --git a/mods/HUD/awards/mod.conf b/mods/HUD/awards/mod.conf index 24042f26..8b153469 100644 --- a/mods/HUD/awards/mod.conf +++ b/mods/HUD/awards/mod.conf @@ -5,3 +5,4 @@ description = Adds achievements to Minetest, and an API to register new ones. license = LGPL 2.1 or later forum = https://forum.minetest.net/viewtopic.php?t=4870 version = 2.3.0 +optional_depends = sfinv, unified_inventory diff --git a/mods/HUD/mcl_achievements/depends.txt b/mods/HUD/mcl_achievements/depends.txt deleted file mode 100644 index 203a4c0a..00000000 --- a/mods/HUD/mcl_achievements/depends.txt +++ /dev/null @@ -1 +0,0 @@ -awards diff --git a/mods/HUD/mcl_achievements/mod.conf b/mods/HUD/mcl_achievements/mod.conf index b9d5af18..dd0a20e2 100644 --- a/mods/HUD/mcl_achievements/mod.conf +++ b/mods/HUD/mcl_achievements/mod.conf @@ -1 +1,2 @@ name = mcl_achievements +depends = awards diff --git a/mods/HUD/mcl_base_textures/description.txt b/mods/HUD/mcl_base_textures/description.txt deleted file mode 100644 index bfd0d06b..00000000 --- a/mods/HUD/mcl_base_textures/description.txt +++ /dev/null @@ -1 +0,0 @@ -Provides core textures needed by Minetest. diff --git a/mods/HUD/mcl_base_textures/mod.conf b/mods/HUD/mcl_base_textures/mod.conf index 492aeca8..549a2b11 100644 --- a/mods/HUD/mcl_base_textures/mod.conf +++ b/mods/HUD/mcl_base_textures/mod.conf @@ -1 +1,2 @@ name = mcl_base_textures +description = Provides core textures needed by Minetest. diff --git a/mods/HUD/mcl_death_messages/description.txt b/mods/HUD/mcl_death_messages/description.txt deleted file mode 100644 index 7c322f64..00000000 --- a/mods/HUD/mcl_death_messages/description.txt +++ /dev/null @@ -1 +0,0 @@ -Shows messages in chat when a player dies. diff --git a/mods/HUD/mcl_death_messages/mod.conf b/mods/HUD/mcl_death_messages/mod.conf index 4e439607..ecb2d79b 100644 --- a/mods/HUD/mcl_death_messages/mod.conf +++ b/mods/HUD/mcl_death_messages/mod.conf @@ -1 +1,2 @@ name = mcl_death_messages +description = Shows messages in chat when a player dies. diff --git a/mods/HUD/mcl_formspec_prepend/depends.txt b/mods/HUD/mcl_formspec_prepend/depends.txt deleted file mode 100644 index 3b355984..00000000 --- a/mods/HUD/mcl_formspec_prepend/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_init diff --git a/mods/HUD/mcl_formspec_prepend/mod.conf b/mods/HUD/mcl_formspec_prepend/mod.conf index c576d449..35af4d6d 100644 --- a/mods/HUD/mcl_formspec_prepend/mod.conf +++ b/mods/HUD/mcl_formspec_prepend/mod.conf @@ -1 +1,2 @@ name = mcl_formspec_prepend +depends = mcl_init diff --git a/mods/HUD/mcl_hbarmor/description.txt b/mods/HUD/mcl_hbarmor/description.txt deleted file mode 100644 index 02a8a34f..00000000 --- a/mods/HUD/mcl_hbarmor/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a HUD bar displaying the current damage of the player's armor. diff --git a/mods/HUD/mcl_hbarmor/mod.conf b/mods/HUD/mcl_hbarmor/mod.conf index de5a2f20..a1d8b3f3 100644 --- a/mods/HUD/mcl_hbarmor/mod.conf +++ b/mods/HUD/mcl_hbarmor/mod.conf @@ -1,2 +1,3 @@ name = mcl_hbarmor depends = hudbars, mcl_armor +description = Adds a HUD bar displaying the current damage of the player's armor. diff --git a/mods/HUD/mcl_inventory/depends.txt b/mods/HUD/mcl_inventory/depends.txt deleted file mode 100644 index 27231e5d..00000000 --- a/mods/HUD/mcl_inventory/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_init -mcl_formspec -mcl_player? -_mcl_autogroup? -mcl_armor? -mcl_brewing? -mcl_potions? -mcl_enchanting diff --git a/mods/HUD/mcl_inventory/description.txt b/mods/HUD/mcl_inventory/description.txt deleted file mode 100644 index 207a3fa5..00000000 --- a/mods/HUD/mcl_inventory/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds the player inventory and creative inventory. diff --git a/mods/HUD/mcl_inventory/mod.conf b/mods/HUD/mcl_inventory/mod.conf index 2900f85c..d9b78454 100644 --- a/mods/HUD/mcl_inventory/mod.conf +++ b/mods/HUD/mcl_inventory/mod.conf @@ -1 +1,4 @@ name = mcl_inventory +description = Adds the player inventory and creative inventory. +depends = mcl_init, mcl_formspec, mcl_enchanting +optional_depends = mcl_player, _mcl_autogroup, mcl_armor, mcl_brewing, mcl_potions diff --git a/mods/HUD/show_wielded_item/depends.txt b/mods/HUD/show_wielded_item/depends.txt deleted file mode 100644 index 3e1d5c20..00000000 --- a/mods/HUD/show_wielded_item/depends.txt +++ /dev/null @@ -1 +0,0 @@ -hudbars? diff --git a/mods/HUD/show_wielded_item/description.txt b/mods/HUD/show_wielded_item/description.txt deleted file mode 100644 index 361cab6c..00000000 --- a/mods/HUD/show_wielded_item/description.txt +++ /dev/null @@ -1 +0,0 @@ -Displays the name of the wielded item. diff --git a/mods/HUD/show_wielded_item/mod.conf b/mods/HUD/show_wielded_item/mod.conf index fdedae0f..36bd5d1a 100644 --- a/mods/HUD/show_wielded_item/mod.conf +++ b/mods/HUD/show_wielded_item/mod.conf @@ -1 +1,3 @@ name = show_wielded_item +description = Displays the name of the wielded item. +optional_depends = hudbars diff --git a/mods/ITEMS/REDSTONE/mcl_comparators/depends.txt b/mods/ITEMS/REDSTONE/mcl_comparators/depends.txt deleted file mode 100644 index 2cc05ce7..00000000 --- a/mods/ITEMS/REDSTONE/mcl_comparators/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mesecons -mcl_sounds -doc? -screwdriver? diff --git a/mods/ITEMS/REDSTONE/mcl_comparators/mod.conf b/mods/ITEMS/REDSTONE/mcl_comparators/mod.conf index e0a6a9bb..d8129f02 100644 --- a/mods/ITEMS/REDSTONE/mcl_comparators/mod.conf +++ b/mods/ITEMS/REDSTONE/mcl_comparators/mod.conf @@ -1 +1,3 @@ name = mcl_comparators +depends = mesecons, mcl_sounds +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/REDSTONE/mcl_dispensers/depends.txt b/mods/ITEMS/REDSTONE/mcl_dispensers/depends.txt deleted file mode 100644 index 7b51f67c..00000000 --- a/mods/ITEMS/REDSTONE/mcl_dispensers/depends.txt +++ /dev/null @@ -1,12 +0,0 @@ -mcl_init -mcl_formspec -mesecons -mcl_sounds -mcl_tnt -mcl_worlds -mcl_core -mcl_nether -mcl_armor_stand -mcl_armor -doc? -screwdriver? diff --git a/mods/ITEMS/REDSTONE/mcl_dispensers/mod.conf b/mods/ITEMS/REDSTONE/mcl_dispensers/mod.conf new file mode 100644 index 00000000..13cdb5f5 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mcl_dispensers/mod.conf @@ -0,0 +1,3 @@ +name = mcl_dispensers +depends = mcl_init, mcl_formspec, mesecons, mcl_sounds, mcl_tnt, mcl_worlds, mcl_core, mcl_nether, mcl_armor_stand, mcl_armor +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/REDSTONE/mcl_droppers/depends.txt b/mods/ITEMS/REDSTONE/mcl_droppers/depends.txt deleted file mode 100644 index cfd9772f..00000000 --- a/mods/ITEMS/REDSTONE/mcl_droppers/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_init -mcl_formspec -mesecons -mcl_util -doc? -screwdriver? diff --git a/mods/ITEMS/REDSTONE/mcl_droppers/mod.conf b/mods/ITEMS/REDSTONE/mcl_droppers/mod.conf new file mode 100644 index 00000000..bbb1c19f --- /dev/null +++ b/mods/ITEMS/REDSTONE/mcl_droppers/mod.conf @@ -0,0 +1,3 @@ +name = mcl_droppers +depends = mcl_init, mcl_formspec, mesecons, mcl_util +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/REDSTONE/mcl_observers/depends.txt b/mods/ITEMS/REDSTONE/mcl_observers/depends.txt deleted file mode 100644 index 95222145..00000000 --- a/mods/ITEMS/REDSTONE/mcl_observers/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -mcl_util diff --git a/mods/ITEMS/REDSTONE/mcl_observers/mod.conf b/mods/ITEMS/REDSTONE/mcl_observers/mod.conf new file mode 100644 index 00000000..fce00191 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mcl_observers/mod.conf @@ -0,0 +1,2 @@ +name = mcl_observers +depends = mesecons, mcl_util diff --git a/mods/ITEMS/REDSTONE/mesecons/depends.txt b/mods/ITEMS/REDSTONE/mesecons/depends.txt deleted file mode 100644 index 812afabc..00000000 --- a/mods/ITEMS/REDSTONE/mesecons/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds -mcl_core -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons/mod.conf b/mods/ITEMS/REDSTONE/mesecons/mod.conf new file mode 100644 index 00000000..94be7650 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons/mod.conf @@ -0,0 +1,3 @@ +name = mesecons +depends = mcl_sounds, mcl_core +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_alias/depends.txt b/mods/ITEMS/REDSTONE/mesecons_alias/depends.txt deleted file mode 100644 index acaa9241..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_alias/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mesecons diff --git a/mods/ITEMS/REDSTONE/mesecons_alias/mod.conf b/mods/ITEMS/REDSTONE/mesecons_alias/mod.conf new file mode 100644 index 00000000..533d54c8 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_alias/mod.conf @@ -0,0 +1,2 @@ +name = mesecons_alias +depends = mesecons diff --git a/mods/ITEMS/REDSTONE/mesecons_button/depends.txt b/mods/ITEMS/REDSTONE/mesecons_button/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_button/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_button/mod.conf b/mods/ITEMS/REDSTONE/mesecons_button/mod.conf new file mode 100644 index 00000000..be127362 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_button/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_button +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_commandblock/depends.txt b/mods/ITEMS/REDSTONE/mesecons_commandblock/depends.txt deleted file mode 100644 index 95ac10fe..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_commandblock/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mesecons -doc? -doc_items? diff --git a/mods/ITEMS/REDSTONE/mesecons_commandblock/mod.conf b/mods/ITEMS/REDSTONE/mesecons_commandblock/mod.conf new file mode 100644 index 00000000..4a743406 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_commandblock/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_commandblock +depends = mesecons +optional_depends = doc, doc_items diff --git a/mods/ITEMS/REDSTONE/mesecons_delayer/depends.txt b/mods/ITEMS/REDSTONE/mesecons_delayer/depends.txt deleted file mode 100644 index 14ced930..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_delayer/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mesecons -doc? -screwdriver? diff --git a/mods/ITEMS/REDSTONE/mesecons_delayer/mod.conf b/mods/ITEMS/REDSTONE/mesecons_delayer/mod.conf new file mode 100644 index 00000000..3f844623 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_delayer/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_delayer +depends = mesecons +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/REDSTONE/mesecons_lightstone/depends.txt b/mods/ITEMS/REDSTONE/mesecons_lightstone/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_lightstone/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_lightstone/mod.conf b/mods/ITEMS/REDSTONE/mesecons_lightstone/mod.conf new file mode 100644 index 00000000..95811bd2 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_lightstone/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_lightstone +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_mvps/depends.txt b/mods/ITEMS/REDSTONE/mesecons_mvps/depends.txt deleted file mode 100644 index acaa9241..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_mvps/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mesecons diff --git a/mods/ITEMS/REDSTONE/mesecons_mvps/mod.conf b/mods/ITEMS/REDSTONE/mesecons_mvps/mod.conf new file mode 100644 index 00000000..3e347879 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_mvps/mod.conf @@ -0,0 +1,2 @@ +name = mesecons_mvps +depends = mesecons diff --git a/mods/ITEMS/REDSTONE/mesecons_noteblock/depends.txt b/mods/ITEMS/REDSTONE/mesecons_noteblock/depends.txt deleted file mode 100644 index 77b6f4da..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_noteblock/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -mcl_particles diff --git a/mods/ITEMS/REDSTONE/mesecons_noteblock/mod.conf b/mods/ITEMS/REDSTONE/mesecons_noteblock/mod.conf new file mode 100644 index 00000000..c388e7a2 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_noteblock/mod.conf @@ -0,0 +1,2 @@ +name = mesecons_noteblock +depends = mesecons, mcl_particles diff --git a/mods/ITEMS/REDSTONE/mesecons_pistons/depends.txt b/mods/ITEMS/REDSTONE/mesecons_pistons/depends.txt deleted file mode 100644 index c19acf4b..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_pistons/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mesecons -mesecons_mvps -mcl_mobitems -doc? -screwdriver? diff --git a/mods/ITEMS/REDSTONE/mesecons_pistons/mod.conf b/mods/ITEMS/REDSTONE/mesecons_pistons/mod.conf new file mode 100644 index 00000000..5a3f6c80 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_pistons/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_pistons +depends = mesecons, mesecons_mvps, mcl_mobitems +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/REDSTONE/mesecons_pressureplates/depends.txt b/mods/ITEMS/REDSTONE/mesecons_pressureplates/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_pressureplates/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_pressureplates/mod.conf b/mods/ITEMS/REDSTONE/mesecons_pressureplates/mod.conf new file mode 100644 index 00000000..0edd40e9 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_pressureplates/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_pressureplates +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_solarpanel/depends.txt b/mods/ITEMS/REDSTONE/mesecons_solarpanel/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_solarpanel/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_solarpanel/mod.conf b/mods/ITEMS/REDSTONE/mesecons_solarpanel/mod.conf new file mode 100644 index 00000000..9897b748 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_solarpanel/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_solarpanel +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_torch/depends.txt b/mods/ITEMS/REDSTONE/mesecons_torch/depends.txt deleted file mode 100644 index 9636f7bd..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_torch/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mesecons -mcl_torches -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_torch/mod.conf b/mods/ITEMS/REDSTONE/mesecons_torch/mod.conf new file mode 100644 index 00000000..85586cad --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_torch/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_torch +depends = mesecons, mcl_torches +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_walllever/depends.txt b/mods/ITEMS/REDSTONE/mesecons_walllever/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_walllever/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_walllever/mod.conf b/mods/ITEMS/REDSTONE/mesecons_walllever/mod.conf new file mode 100644 index 00000000..8512e9d6 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_walllever/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_walllever +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/REDSTONE/mesecons_wires/depends.txt b/mods/ITEMS/REDSTONE/mesecons_wires/depends.txt deleted file mode 100644 index 4fdbda79..00000000 --- a/mods/ITEMS/REDSTONE/mesecons_wires/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mesecons -doc? diff --git a/mods/ITEMS/REDSTONE/mesecons_wires/mod.conf b/mods/ITEMS/REDSTONE/mesecons_wires/mod.conf new file mode 100644 index 00000000..15f2e0d3 --- /dev/null +++ b/mods/ITEMS/REDSTONE/mesecons_wires/mod.conf @@ -0,0 +1,3 @@ +name = mesecons_wires +depends = mesecons +optional_depends = doc diff --git a/mods/ITEMS/mcl_anvils/depends.txt b/mods/ITEMS/mcl_anvils/depends.txt deleted file mode 100644 index 89b87aa2..00000000 --- a/mods/ITEMS/mcl_anvils/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_init -mcl_formspec -mcl_sounds -mcl_core? -screwdriver? -tt -mcl_enchanting diff --git a/mods/ITEMS/mcl_anvils/mod.conf b/mods/ITEMS/mcl_anvils/mod.conf index 7712df19..ca88c4dc 100644 --- a/mods/ITEMS/mcl_anvils/mod.conf +++ b/mods/ITEMS/mcl_anvils/mod.conf @@ -1 +1,3 @@ name = mcl_anvils +depends = mcl_init, mcl_formspec, mcl_sounds, tt, mcl_enchanting +optional_depends = mcl_core, screwdriver diff --git a/mods/ITEMS/mcl_armor/depends.txt b/mods/ITEMS/mcl_armor/depends.txt deleted file mode 100644 index 067cf61b..00000000 --- a/mods/ITEMS/mcl_armor/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_core -mcl_player -mcl_fire? -ethereal? -bakedclay? -mcl_enchanting diff --git a/mods/ITEMS/mcl_armor/description.txt b/mods/ITEMS/mcl_armor/description.txt deleted file mode 100644 index b0a9b0a5..00000000 --- a/mods/ITEMS/mcl_armor/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds craftable armor that is visible to other players. diff --git a/mods/ITEMS/mcl_armor/mod.conf b/mods/ITEMS/mcl_armor/mod.conf new file mode 100644 index 00000000..2428bd67 --- /dev/null +++ b/mods/ITEMS/mcl_armor/mod.conf @@ -0,0 +1,4 @@ +name = mcl_armor +description = Adds craftable armor that is visible to other players. +depends = mcl_core, mcl_player, mcl_enchanting +optional_depends = mcl_fire, ethereal, bakedclay diff --git a/mods/ITEMS/mcl_armor_stand/depends.txt b/mods/ITEMS/mcl_armor_stand/depends.txt deleted file mode 100644 index 02ce27d7..00000000 --- a/mods/ITEMS/mcl_armor_stand/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_armor -mcl_core -mcl_sounds -mcl_stairs -screwdriver? diff --git a/mods/ITEMS/mcl_armor_stand/mod.conf b/mods/ITEMS/mcl_armor_stand/mod.conf new file mode 100644 index 00000000..c6eff1b2 --- /dev/null +++ b/mods/ITEMS/mcl_armor_stand/mod.conf @@ -0,0 +1,3 @@ +name = mcl_armor_stand +depends = mcl_armor, mcl_core, mcl_sounds, mcl_stairs +optional_depends = screwdriver diff --git a/mods/ITEMS/mcl_banners/depends.txt b/mods/ITEMS/mcl_banners/depends.txt deleted file mode 100644 index d7ac7105..00000000 --- a/mods/ITEMS/mcl_banners/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_sounds? -mcl_core? -mcl_wool? -mcl_cauldrons? -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_banners/description.txt b/mods/ITEMS/mcl_banners/description.txt deleted file mode 100644 index 5e748a2e..00000000 --- a/mods/ITEMS/mcl_banners/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds decorative banners in different colors which can be emblazoned with patterns, offering a countless number of combinations. diff --git a/mods/ITEMS/mcl_banners/mod.conf b/mods/ITEMS/mcl_banners/mod.conf index 21126658..c3a65968 100644 --- a/mods/ITEMS/mcl_banners/mod.conf +++ b/mods/ITEMS/mcl_banners/mod.conf @@ -1 +1,3 @@ name = mcl_banners +description = Adds decorative banners in different colors which can be emblazoned with patterns, offering a countless number of combinations. +optional_depends = mcl_sounds, mcl_core, mcl_wool, mcl_cauldrons, doc, screwdriver diff --git a/mods/ITEMS/mcl_beds/depends.txt b/mods/ITEMS/mcl_beds/depends.txt deleted file mode 100644 index c7c874fd..00000000 --- a/mods/ITEMS/mcl_beds/depends.txt +++ /dev/null @@ -1,9 +0,0 @@ -playerphysics -mcl_sounds? -mcl_worlds? -mcl_wool? -mcl_dye? -mcl_explosions? -mcl_weather? -mcl_spawn? -doc? diff --git a/mods/ITEMS/mcl_beds/mod.conf b/mods/ITEMS/mcl_beds/mod.conf index 62645f3b..46fd8512 100644 --- a/mods/ITEMS/mcl_beds/mod.conf +++ b/mods/ITEMS/mcl_beds/mod.conf @@ -1 +1,3 @@ name = mcl_beds +depends = playerphysics +optional_depends = mcl_sounds, mcl_worlds, mcl_wool, mcl_dye, mcl_explosions, mcl_weather, mcl_spawn, doc diff --git a/mods/ITEMS/mcl_books/depends.txt b/mods/ITEMS/mcl_books/depends.txt deleted file mode 100644 index e1ecc48c..00000000 --- a/mods/ITEMS/mcl_books/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_init? -mcl_core? -mcl_sounds? -mcl_mobitems? -mcl_dye? diff --git a/mods/ITEMS/mcl_books/mod.conf b/mods/ITEMS/mcl_books/mod.conf index 9597005c..7fe88cd0 100644 --- a/mods/ITEMS/mcl_books/mod.conf +++ b/mods/ITEMS/mcl_books/mod.conf @@ -1 +1,2 @@ name = mcl_books +optional_depends = mcl_init, mcl_core, mcl_sounds, mcl_mobitems, mcl_dye diff --git a/mods/ITEMS/mcl_bows/depends.txt b/mods/ITEMS/mcl_bows/depends.txt deleted file mode 100644 index a797e718..00000000 --- a/mods/ITEMS/mcl_bows/depends.txt +++ /dev/null @@ -1,11 +0,0 @@ -controls -awards? -mcl_achievements? -mcl_core? -mcl_mobitems? -playerphysics? -doc? -doc_identifier? -mesecons_button? -mcl_particles -mcl_enchanting diff --git a/mods/ITEMS/mcl_bows/mod.conf b/mods/ITEMS/mcl_bows/mod.conf new file mode 100644 index 00000000..a136d2d3 --- /dev/null +++ b/mods/ITEMS/mcl_bows/mod.conf @@ -0,0 +1,3 @@ +name = mcl_bows +depends = controls, mcl_particles, mcl_enchanting +optional_depends = awards, mcl_achievements, mcl_core, mcl_mobitems, playerphysics, doc, doc_identifier, mesecons_button diff --git a/mods/ITEMS/mcl_buckets/depends.txt b/mods/ITEMS/mcl_buckets/depends.txt deleted file mode 100644 index eb9bca8d..00000000 --- a/mods/ITEMS/mcl_buckets/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_worlds -mcl_core? -mclx_core? -doc? diff --git a/mods/ITEMS/mcl_buckets/mod.conf b/mods/ITEMS/mcl_buckets/mod.conf new file mode 100644 index 00000000..a1c3dfd5 --- /dev/null +++ b/mods/ITEMS/mcl_buckets/mod.conf @@ -0,0 +1,3 @@ +name = mcl_buckets +depends = mcl_worlds +optional_depends = mcl_core, mclx_core, doc diff --git a/mods/ITEMS/mcl_cake/depends.txt b/mods/ITEMS/mcl_cake/depends.txt deleted file mode 100644 index 1ed0ada1..00000000 --- a/mods/ITEMS/mcl_cake/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_core -mcl_sounds -mcl_hunger -mcl_buckets -mcl_farming -mcl_mobitems -doc? diff --git a/mods/ITEMS/mcl_cake/mod.conf b/mods/ITEMS/mcl_cake/mod.conf index 2a76657f..9c303665 100644 --- a/mods/ITEMS/mcl_cake/mod.conf +++ b/mods/ITEMS/mcl_cake/mod.conf @@ -1 +1,3 @@ name = mcl_cake +depends = mcl_core, mcl_sounds, mcl_hunger, mcl_buckets, mcl_farming, mcl_mobitems +optional_depends = doc diff --git a/mods/ITEMS/mcl_cauldrons/depends.txt b/mods/ITEMS/mcl_cauldrons/depends.txt deleted file mode 100644 index 2c344c60..00000000 --- a/mods/ITEMS/mcl_cauldrons/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core -mclx_core? -mcl_sounds -doc? diff --git a/mods/ITEMS/mcl_cauldrons/mod.conf b/mods/ITEMS/mcl_cauldrons/mod.conf index 1bedf9d7..4787d60f 100644 --- a/mods/ITEMS/mcl_cauldrons/mod.conf +++ b/mods/ITEMS/mcl_cauldrons/mod.conf @@ -1 +1,3 @@ name = mcl_cauldrons +depends = mcl_core, mcl_sounds +optional_depends = mclx_core, doc diff --git a/mods/ITEMS/mcl_chests/depends.txt b/mods/ITEMS/mcl_chests/depends.txt deleted file mode 100644 index af11d5f6..00000000 --- a/mods/ITEMS/mcl_chests/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_init -mcl_formspec -mcl_core -mcl_sounds -mcl_end -mesecons -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_chests/mod.conf b/mods/ITEMS/mcl_chests/mod.conf new file mode 100644 index 00000000..0ff5129c --- /dev/null +++ b/mods/ITEMS/mcl_chests/mod.conf @@ -0,0 +1,3 @@ +name = mcl_chests +depends = mcl_init, mcl_formspec, mcl_core, mcl_sounds, mcl_end, mesecons +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_clock/depends.txt b/mods/ITEMS/mcl_clock/depends.txt deleted file mode 100644 index 514d7814..00000000 --- a/mods/ITEMS/mcl_clock/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_init -mcl_worlds -mesecons -doc? diff --git a/mods/ITEMS/mcl_clock/description.txt b/mods/ITEMS/mcl_clock/description.txt deleted file mode 100644 index 1b7157aa..00000000 --- a/mods/ITEMS/mcl_clock/description.txt +++ /dev/null @@ -1 +0,0 @@ -A fantasy clock item roughly shows the time of day. diff --git a/mods/ITEMS/mcl_clock/mod.conf b/mods/ITEMS/mcl_clock/mod.conf index ba0d83ea..e358ff29 100644 --- a/mods/ITEMS/mcl_clock/mod.conf +++ b/mods/ITEMS/mcl_clock/mod.conf @@ -1 +1,4 @@ name = mcl_clock +description = A fantasy clock item roughly shows the time of day. +depends = mcl_init, mcl_worlds, mesecons +optional_depends = doc diff --git a/mods/ITEMS/mcl_cocoas/depends.txt b/mods/ITEMS/mcl_cocoas/depends.txt deleted file mode 100644 index 812afabc..00000000 --- a/mods/ITEMS/mcl_cocoas/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds -mcl_core -doc? diff --git a/mods/ITEMS/mcl_cocoas/description.txt b/mods/ITEMS/mcl_cocoas/description.txt deleted file mode 100644 index 1af5d7ce..00000000 --- a/mods/ITEMS/mcl_cocoas/description.txt +++ /dev/null @@ -1 +0,0 @@ -Cocoa pods which grow at jungle trees. Does not include cocoa beans. diff --git a/mods/ITEMS/mcl_cocoas/mod.conf b/mods/ITEMS/mcl_cocoas/mod.conf index 923ea978..ac731e45 100644 --- a/mods/ITEMS/mcl_cocoas/mod.conf +++ b/mods/ITEMS/mcl_cocoas/mod.conf @@ -1 +1,4 @@ name = mcl_cocoas +description = Cocoa pods which grow at jungle trees. Does not include cocoa beans. +depends = mcl_sounds, mcl_core +optional_depends = doc diff --git a/mods/ITEMS/mcl_colorblocks/depends.txt b/mods/ITEMS/mcl_colorblocks/depends.txt deleted file mode 100644 index c9db3b28..00000000 --- a/mods/ITEMS/mcl_colorblocks/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_sounds -mcl_dye -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_colorblocks/description.txt b/mods/ITEMS/mcl_colorblocks/description.txt deleted file mode 100644 index ff77b29a..00000000 --- a/mods/ITEMS/mcl_colorblocks/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds blocks which can be colored, namely hardened clay. diff --git a/mods/ITEMS/mcl_colorblocks/mod.conf b/mods/ITEMS/mcl_colorblocks/mod.conf index 2d6ffb1c..dab0ce58 100644 --- a/mods/ITEMS/mcl_colorblocks/mod.conf +++ b/mods/ITEMS/mcl_colorblocks/mod.conf @@ -1 +1,4 @@ name = mcl_colorblocks +description = Adds blocks which can be colored, namely hardened clay. +depends = mcl_core, mcl_sounds, mcl_dye +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_compass/depends.txt b/mods/ITEMS/mcl_compass/depends.txt deleted file mode 100644 index 53261d53..00000000 --- a/mods/ITEMS/mcl_compass/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core -mcl_worlds -mesecons -doc? diff --git a/mods/ITEMS/mcl_compass/description.txt b/mods/ITEMS/mcl_compass/description.txt deleted file mode 100644 index 221a9f6d..00000000 --- a/mods/ITEMS/mcl_compass/description.txt +++ /dev/null @@ -1 +0,0 @@ -A compass item which points towards the world origin. diff --git a/mods/ITEMS/mcl_compass/mod.conf b/mods/ITEMS/mcl_compass/mod.conf index 8c9e0a65..41266222 100644 --- a/mods/ITEMS/mcl_compass/mod.conf +++ b/mods/ITEMS/mcl_compass/mod.conf @@ -1 +1,4 @@ name = mcl_compass +description = A compass item which points towards the world origin. +depends = mcl_core, mcl_worlds, mesecons +optional_depends = doc diff --git a/mods/ITEMS/mcl_core/depends.txt b/mods/ITEMS/mcl_core/depends.txt deleted file mode 100644 index 4e3912e1..00000000 --- a/mods/ITEMS/mcl_core/depends.txt +++ /dev/null @@ -1,9 +0,0 @@ -mcl_autogroup -mcl_init -mcl_sounds -mcl_particles -mcl_util -mcl_worlds -doc_items -doc? -mcl_enchanting diff --git a/mods/ITEMS/mcl_core/description.txt b/mods/ITEMS/mcl_core/description.txt deleted file mode 100644 index 96229f77..00000000 --- a/mods/ITEMS/mcl_core/description.txt +++ /dev/null @@ -1 +0,0 @@ -Core items of MineClone 2: Basic biome blocks (dirt, sand, stones, etc.), derived items, glass, sugar cane, cactus, barrier, mining tools, hand, craftitems, and misc. items which don't really fit anywhere else. diff --git a/mods/ITEMS/mcl_core/mod.conf b/mods/ITEMS/mcl_core/mod.conf index 575c4665..e204ace8 100644 --- a/mods/ITEMS/mcl_core/mod.conf +++ b/mods/ITEMS/mcl_core/mod.conf @@ -1 +1,4 @@ name = mcl_core +description = Core items of MineClone 2: Basic biome blocks (dirt, sand, stones, etc.), derived items, glass, sugar cane, cactus, barrier, mining tools, hand, craftitems, and misc. items which don't really fit anywhere else. +depends = mcl_autogroup, mcl_init, mcl_sounds, mcl_particles, mcl_util, mcl_worlds, doc_items, mcl_enchanting +optional_depends = doc diff --git a/mods/ITEMS/mcl_crafting_table/depends.txt b/mods/ITEMS/mcl_crafting_table/depends.txt deleted file mode 100644 index 97aafc58..00000000 --- a/mods/ITEMS/mcl_crafting_table/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_init -mcl_formspec -mcl_sounds diff --git a/mods/ITEMS/mcl_crafting_table/description.txt b/mods/ITEMS/mcl_crafting_table/description.txt deleted file mode 100644 index 5f2a7978..00000000 --- a/mods/ITEMS/mcl_crafting_table/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a crafting table. diff --git a/mods/ITEMS/mcl_crafting_table/mod.conf b/mods/ITEMS/mcl_crafting_table/mod.conf index db5ab14a..7ae387b3 100644 --- a/mods/ITEMS/mcl_crafting_table/mod.conf +++ b/mods/ITEMS/mcl_crafting_table/mod.conf @@ -1 +1,3 @@ name = mcl_crafting_table +description = Adds a crafting table. +depends = mcl_init, mcl_formspec, mcl_sounds diff --git a/mods/ITEMS/mcl_doors/depends.txt b/mods/ITEMS/mcl_doors/depends.txt deleted file mode 100644 index e2ae3cf4..00000000 --- a/mods/ITEMS/mcl_doors/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_sounds -doc? -screwdriver? -mesecons diff --git a/mods/ITEMS/mcl_doors/mod.conf b/mods/ITEMS/mcl_doors/mod.conf index d504e849..ed2b094a 100644 --- a/mods/ITEMS/mcl_doors/mod.conf +++ b/mods/ITEMS/mcl_doors/mod.conf @@ -1 +1,3 @@ name = mcl_doors +depends = mcl_core, mcl_sounds, mesecons +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_dye/depends.txt b/mods/ITEMS/mcl_dye/depends.txt deleted file mode 100644 index 83185405..00000000 --- a/mods/ITEMS/mcl_dye/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core -mcl_flowers -mcl_mobitems -mcl_cocoas diff --git a/mods/ITEMS/mcl_dye/mod.conf b/mods/ITEMS/mcl_dye/mod.conf index 356b1643..fe93278f 100644 --- a/mods/ITEMS/mcl_dye/mod.conf +++ b/mods/ITEMS/mcl_dye/mod.conf @@ -1 +1,2 @@ name = mcl_dye +depends = mcl_core, mcl_flowers, mcl_mobitems, mcl_cocoas diff --git a/mods/ITEMS/mcl_end/depends.txt b/mods/ITEMS/mcl_end/depends.txt deleted file mode 100644 index 2adb4b59..00000000 --- a/mods/ITEMS/mcl_end/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_sounds -mcl_util -doc_items -mcl_worlds -mcl_structures diff --git a/mods/ITEMS/mcl_end/mod.conf b/mods/ITEMS/mcl_end/mod.conf new file mode 100644 index 00000000..21f91913 --- /dev/null +++ b/mods/ITEMS/mcl_end/mod.conf @@ -0,0 +1,2 @@ +name = mcl_end +depends = mcl_sounds, mcl_util, doc_items, mcl_worlds, mcl_structures diff --git a/mods/ITEMS/mcl_farming/depends.txt b/mods/ITEMS/mcl_farming/depends.txt deleted file mode 100644 index 0ed4f3f5..00000000 --- a/mods/ITEMS/mcl_farming/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_core -mcl_sounds -mcl_wool -mcl_torches -mcl_weather -mcl_armor? -mobs_mc -doc? diff --git a/mods/ITEMS/mcl_farming/mod.conf b/mods/ITEMS/mcl_farming/mod.conf index 4805e95d..73627923 100644 --- a/mods/ITEMS/mcl_farming/mod.conf +++ b/mods/ITEMS/mcl_farming/mod.conf @@ -1 +1,3 @@ name = mcl_farming +depends = mcl_core, mcl_sounds, mcl_wool, mcl_torches, mcl_weather, mobs_mc +optional_depends = mcl_armor, doc diff --git a/mods/ITEMS/mcl_fences/depends.txt b/mods/ITEMS/mcl_fences/depends.txt deleted file mode 100644 index 217875c5..00000000 --- a/mods/ITEMS/mcl_fences/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core -mcl_sounds -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_fences/mod.conf b/mods/ITEMS/mcl_fences/mod.conf index b5eafa90..8b20dd16 100644 --- a/mods/ITEMS/mcl_fences/mod.conf +++ b/mods/ITEMS/mcl_fences/mod.conf @@ -1 +1,3 @@ name = mcl_fences +depends = mcl_core, mcl_sounds +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_fire/depends.txt b/mods/ITEMS/mcl_fire/depends.txt deleted file mode 100644 index 97699f21..00000000 --- a/mods/ITEMS/mcl_fire/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_worlds -mcl_sounds -mcl_particles -mcl_portals? diff --git a/mods/ITEMS/mcl_fire/mod.conf b/mods/ITEMS/mcl_fire/mod.conf index 23de4da6..f5f04b34 100644 --- a/mods/ITEMS/mcl_fire/mod.conf +++ b/mods/ITEMS/mcl_fire/mod.conf @@ -1 +1,3 @@ name = mcl_fire +depends = mcl_core, mcl_worlds, mcl_sounds, mcl_particles +optional_depends = mcl_portals diff --git a/mods/ITEMS/mcl_fishing/depends.txt b/mods/ITEMS/mcl_fishing/depends.txt deleted file mode 100644 index bbc3c6ad..00000000 --- a/mods/ITEMS/mcl_fishing/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_sounds -mcl_loot -mcl_mobs -mcl_enchanting diff --git a/mods/ITEMS/mcl_fishing/description.txt b/mods/ITEMS/mcl_fishing/description.txt deleted file mode 100644 index 1befeab1..00000000 --- a/mods/ITEMS/mcl_fishing/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds fish and fishing poles to go fishing. diff --git a/mods/ITEMS/mcl_fishing/mod.conf b/mods/ITEMS/mcl_fishing/mod.conf index 3a02c5cf..56a3305a 100644 --- a/mods/ITEMS/mcl_fishing/mod.conf +++ b/mods/ITEMS/mcl_fishing/mod.conf @@ -1 +1,3 @@ name = mcl_fishing +description = Adds fish and fishing poles to go fishing. +depends = mcl_core, mcl_sounds, mcl_loot, mcl_mobs, mcl_enchanting diff --git a/mods/ITEMS/mcl_flowerpots/depends.txt b/mods/ITEMS/mcl_flowerpots/depends.txt deleted file mode 100644 index bc1609be..00000000 --- a/mods/ITEMS/mcl_flowerpots/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_sounds -mcl_farming -mcl_flowers -doc? diff --git a/mods/ITEMS/mcl_flowerpots/mod.conf b/mods/ITEMS/mcl_flowerpots/mod.conf new file mode 100644 index 00000000..24e29d3f --- /dev/null +++ b/mods/ITEMS/mcl_flowerpots/mod.conf @@ -0,0 +1,3 @@ +name = mcl_flowerpots +depends = mcl_core, mcl_sounds, mcl_farming, mcl_flowers +optional_depends = doc diff --git a/mods/ITEMS/mcl_flowers/depends.txt b/mods/ITEMS/mcl_flowers/depends.txt deleted file mode 100644 index a7a7b9cd..00000000 --- a/mods/ITEMS/mcl_flowers/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_util -mcl_sounds -screwdriver? -doc? diff --git a/mods/ITEMS/mcl_flowers/mod.conf b/mods/ITEMS/mcl_flowers/mod.conf new file mode 100644 index 00000000..c3eb159b --- /dev/null +++ b/mods/ITEMS/mcl_flowers/mod.conf @@ -0,0 +1,3 @@ +name = mcl_flowers +depends = mcl_core, mcl_util, mcl_sounds +optional_depends = screwdriver, doc diff --git a/mods/ITEMS/mcl_furnaces/depends.txt b/mods/ITEMS/mcl_furnaces/depends.txt deleted file mode 100644 index ca05945f..00000000 --- a/mods/ITEMS/mcl_furnaces/depends.txt +++ /dev/null @@ -1,9 +0,0 @@ -mcl_init -mcl_formspec -mcl_core -mcl_sounds -mcl_craftguide -mcl_achievements -mcl_particles -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_furnaces/mod.conf b/mods/ITEMS/mcl_furnaces/mod.conf index 32f1ed8e..fe0b9c20 100644 --- a/mods/ITEMS/mcl_furnaces/mod.conf +++ b/mods/ITEMS/mcl_furnaces/mod.conf @@ -1 +1,3 @@ name = mcl_furnaces +depends = mcl_init, mcl_formspec, mcl_core, mcl_sounds, mcl_craftguide, mcl_achievements, mcl_particles +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_heads/depends.txt b/mods/ITEMS/mcl_heads/depends.txt deleted file mode 100644 index 01846722..00000000 --- a/mods/ITEMS/mcl_heads/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_sounds -mcl_armor? -screwdriver? -doc? diff --git a/mods/ITEMS/mcl_heads/description.txt b/mods/ITEMS/mcl_heads/description.txt deleted file mode 100644 index b169ba79..00000000 --- a/mods/ITEMS/mcl_heads/description.txt +++ /dev/null @@ -1 +0,0 @@ -Small decorative head blocks. diff --git a/mods/ITEMS/mcl_heads/mod.conf b/mods/ITEMS/mcl_heads/mod.conf index 0dab9007..e2fe34f6 100644 --- a/mods/ITEMS/mcl_heads/mod.conf +++ b/mods/ITEMS/mcl_heads/mod.conf @@ -1 +1,4 @@ name = mcl_heads +description = Small decorative head blocks. +depends = mcl_sounds +optional_depends = mcl_armor, screwdriver, doc diff --git a/mods/ITEMS/mcl_hoppers/depends.txt b/mods/ITEMS/mcl_hoppers/depends.txt deleted file mode 100644 index 67a60d4d..00000000 --- a/mods/ITEMS/mcl_hoppers/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_core -mcl_formspec -mcl_sounds -mcl_util -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_hoppers/description.txt b/mods/ITEMS/mcl_hoppers/description.txt deleted file mode 100644 index 4430809a..00000000 --- a/mods/ITEMS/mcl_hoppers/description.txt +++ /dev/null @@ -1 +0,0 @@ -It's just a clone of Minecraft hoppers, functions nearly identical to them minus mesecons making them stop and the way they're placed. diff --git a/mods/ITEMS/mcl_hoppers/mod.conf b/mods/ITEMS/mcl_hoppers/mod.conf new file mode 100644 index 00000000..c89292f6 --- /dev/null +++ b/mods/ITEMS/mcl_hoppers/mod.conf @@ -0,0 +1,4 @@ +name = mcl_hoppers +description = It's just a clone of Minecraft hoppers, functions nearly identical to them minus mesecons making them stop and the way they're placed. +depends = mcl_core, mcl_formspec, mcl_sounds, mcl_util +optional_depends = doc, screwdriver diff --git a/mods/ITEMS/mcl_itemframes/depends.txt b/mods/ITEMS/mcl_itemframes/depends.txt deleted file mode 100644 index 0b5088e3..00000000 --- a/mods/ITEMS/mcl_itemframes/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_core -mcl_sounds -screwdriver? diff --git a/mods/ITEMS/mcl_itemframes/mod.conf b/mods/ITEMS/mcl_itemframes/mod.conf new file mode 100644 index 00000000..39f4370a --- /dev/null +++ b/mods/ITEMS/mcl_itemframes/mod.conf @@ -0,0 +1,3 @@ +name = mcl_itemframes +depends = mcl_core, mcl_sounds +optional_depends = screwdriver diff --git a/mods/ITEMS/mcl_jukebox/depends.txt b/mods/ITEMS/mcl_jukebox/depends.txt deleted file mode 100644 index 97bf5106..00000000 --- a/mods/ITEMS/mcl_jukebox/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_core -mcl_sounds diff --git a/mods/ITEMS/mcl_jukebox/description.txt b/mods/ITEMS/mcl_jukebox/description.txt deleted file mode 100644 index 143812e1..00000000 --- a/mods/ITEMS/mcl_jukebox/description.txt +++ /dev/null @@ -1 +0,0 @@ -Jukebox and music discs are used to play background music on a per-player basis. diff --git a/mods/ITEMS/mcl_jukebox/mod.conf b/mods/ITEMS/mcl_jukebox/mod.conf index ec39a7be..ad1f8c06 100644 --- a/mods/ITEMS/mcl_jukebox/mod.conf +++ b/mods/ITEMS/mcl_jukebox/mod.conf @@ -1 +1,3 @@ name = mcl_jukebox +description = Jukebox and music discs are used to play background music on a per-player basis. +depends = mcl_core, mcl_sounds diff --git a/mods/ITEMS/mcl_mobitems/depends.txt b/mods/ITEMS/mcl_mobitems/depends.txt deleted file mode 100644 index 73d023f6..00000000 --- a/mods/ITEMS/mcl_mobitems/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_core -mcl_hunger diff --git a/mods/ITEMS/mcl_mobitems/mod.conf b/mods/ITEMS/mcl_mobitems/mod.conf index bd534323..dc85b6b0 100644 --- a/mods/ITEMS/mcl_mobitems/mod.conf +++ b/mods/ITEMS/mcl_mobitems/mod.conf @@ -1 +1,2 @@ name = mcl_mobitems +depends = mcl_core, mcl_hunger diff --git a/mods/ITEMS/mcl_mobspawners/depends.txt b/mods/ITEMS/mcl_mobspawners/depends.txt deleted file mode 100644 index dc1a03b8..00000000 --- a/mods/ITEMS/mcl_mobspawners/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_sounds -mcl_mobs diff --git a/mods/ITEMS/mcl_mobspawners/mod.conf b/mods/ITEMS/mcl_mobspawners/mod.conf index 36112bf3..1759e340 100644 --- a/mods/ITEMS/mcl_mobspawners/mod.conf +++ b/mods/ITEMS/mcl_mobspawners/mod.conf @@ -1 +1,2 @@ name = mcl_mobspawners +depends = mcl_sounds, mcl_mobs diff --git a/mods/ITEMS/mcl_monster_eggs/depends.txt b/mods/ITEMS/mcl_monster_eggs/depends.txt deleted file mode 100644 index d867036e..00000000 --- a/mods/ITEMS/mcl_monster_eggs/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_sounds -mobs_mc diff --git a/mods/ITEMS/mcl_monster_eggs/description.txt b/mods/ITEMS/mcl_monster_eggs/description.txt deleted file mode 100644 index ae7cab25..00000000 --- a/mods/ITEMS/mcl_monster_eggs/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds infested blocks: Blocks which which disguise themselves as stone blocks and spawn a silverfish when broken. diff --git a/mods/ITEMS/mcl_monster_eggs/mod.conf b/mods/ITEMS/mcl_monster_eggs/mod.conf new file mode 100644 index 00000000..b2960186 --- /dev/null +++ b/mods/ITEMS/mcl_monster_eggs/mod.conf @@ -0,0 +1,3 @@ +name = mcl_monster_eggs +description = Adds infested blocks: Blocks which which disguise themselves as stone blocks and spawn a silverfish when broken. +depends = mcl_sounds, mobs_mc diff --git a/mods/ITEMS/mcl_mushrooms/depends.txt b/mods/ITEMS/mcl_mushrooms/depends.txt deleted file mode 100644 index 7ddb9b8f..00000000 --- a/mods/ITEMS/mcl_mushrooms/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds -mcl_util -doc? diff --git a/mods/ITEMS/mcl_mushrooms/mod.conf b/mods/ITEMS/mcl_mushrooms/mod.conf index 64bbd8ca..20f7bef1 100644 --- a/mods/ITEMS/mcl_mushrooms/mod.conf +++ b/mods/ITEMS/mcl_mushrooms/mod.conf @@ -1 +1,3 @@ name = mcl_mushrooms +depends = mcl_sounds, mcl_util +optional_depends = doc diff --git a/mods/ITEMS/mcl_nether/depends.txt b/mods/ITEMS/mcl_nether/depends.txt deleted file mode 100644 index 96f253aa..00000000 --- a/mods/ITEMS/mcl_nether/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_core -mcl_sounds -mcl_util -walkover -mcl_death_messages? -doc_items -doc? -screwdriver? diff --git a/mods/ITEMS/mcl_nether/mod.conf b/mods/ITEMS/mcl_nether/mod.conf index 2b6c641a..807bf311 100644 --- a/mods/ITEMS/mcl_nether/mod.conf +++ b/mods/ITEMS/mcl_nether/mod.conf @@ -1 +1,3 @@ name = mcl_nether +depends = mcl_core, mcl_sounds, mcl_util, walkover, doc_items +optional_depends = mcl_death_messages, doc, screwdriver diff --git a/mods/ITEMS/mcl_ocean/depends.txt b/mods/ITEMS/mcl_ocean/depends.txt deleted file mode 100644 index 66908e83..00000000 --- a/mods/ITEMS/mcl_ocean/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_core -mcl_sounds -mcl_dye -doc? -doc_items? -screwdriver? diff --git a/mods/ITEMS/mcl_ocean/description.txt b/mods/ITEMS/mcl_ocean/description.txt deleted file mode 100644 index bff01f61..00000000 --- a/mods/ITEMS/mcl_ocean/description.txt +++ /dev/null @@ -1 +0,0 @@ -Ocean-related blocks and items (for the ocean temple). diff --git a/mods/ITEMS/mcl_ocean/mod.conf b/mods/ITEMS/mcl_ocean/mod.conf index 664d8e1e..9b639a7b 100644 --- a/mods/ITEMS/mcl_ocean/mod.conf +++ b/mods/ITEMS/mcl_ocean/mod.conf @@ -1,2 +1,4 @@ name = mcl_ocean description = Includes various ocean nodes +depends = mcl_core, mcl_sounds, mcl_dye +optional_depends = doc, doc_items, screwdriver diff --git a/mods/ITEMS/mcl_portals/depends.txt b/mods/ITEMS/mcl_portals/depends.txt deleted file mode 100644 index f794e5f9..00000000 --- a/mods/ITEMS/mcl_portals/depends.txt +++ /dev/null @@ -1,9 +0,0 @@ -mcl_init -mcl_worlds -mcl_core -mcl_nether -mcl_end -mcl_particles -mcl_spawn -awards? -doc? diff --git a/mods/ITEMS/mcl_portals/description.txt b/mods/ITEMS/mcl_portals/description.txt deleted file mode 100644 index fe84531f..00000000 --- a/mods/ITEMS/mcl_portals/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds buildable portals to the Nether and End dimensions. diff --git a/mods/ITEMS/mcl_portals/mod.conf b/mods/ITEMS/mcl_portals/mod.conf index e82fbe6c..b25ab391 100644 --- a/mods/ITEMS/mcl_portals/mod.conf +++ b/mods/ITEMS/mcl_portals/mod.conf @@ -1 +1,4 @@ name = mcl_portals +description = Adds buildable portals to the Nether and End dimensions. +depends = mcl_init, mcl_worlds, mcl_core, mcl_nether, mcl_end, mcl_particles, mcl_spawn +optional_depends = awards, doc diff --git a/mods/ITEMS/mcl_signs/depends.txt b/mods/ITEMS/mcl_signs/depends.txt deleted file mode 100644 index f123382f..00000000 --- a/mods/ITEMS/mcl_signs/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds? -mcl_core? -doc? diff --git a/mods/ITEMS/mcl_signs/mod.conf b/mods/ITEMS/mcl_signs/mod.conf index 8346bbcb..1af689d7 100644 --- a/mods/ITEMS/mcl_signs/mod.conf +++ b/mods/ITEMS/mcl_signs/mod.conf @@ -1 +1,2 @@ name = mcl_signs +optional_depends = mcl_sounds, mcl_core, doc diff --git a/mods/ITEMS/mcl_sponges/depends.txt b/mods/ITEMS/mcl_sponges/depends.txt deleted file mode 100644 index 10e9d290..00000000 --- a/mods/ITEMS/mcl_sponges/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds -mcl_core? -mclx_core? diff --git a/mods/ITEMS/mcl_sponges/description.txt b/mods/ITEMS/mcl_sponges/description.txt deleted file mode 100644 index 80f47c25..00000000 --- a/mods/ITEMS/mcl_sponges/description.txt +++ /dev/null @@ -1 +0,0 @@ -A sponge which sucks in water (WIP). diff --git a/mods/ITEMS/mcl_sponges/mod.conf b/mods/ITEMS/mcl_sponges/mod.conf index 71a459c1..d833493b 100644 --- a/mods/ITEMS/mcl_sponges/mod.conf +++ b/mods/ITEMS/mcl_sponges/mod.conf @@ -1 +1,4 @@ name = mcl_sponges +description = A sponge which sucks in water (WIP). +depends = mcl_sounds +optional_depends = mcl_core, mclx_core diff --git a/mods/ITEMS/mcl_stairs/depends.txt b/mods/ITEMS/mcl_stairs/depends.txt deleted file mode 100644 index 96e184bd..00000000 --- a/mods/ITEMS/mcl_stairs/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcl_core -mcl_sounds -mcl_nether -mcl_end -mcl_ocean diff --git a/mods/ITEMS/mcl_stairs/mod.conf b/mods/ITEMS/mcl_stairs/mod.conf index 4540a798..a357c2c7 100644 --- a/mods/ITEMS/mcl_stairs/mod.conf +++ b/mods/ITEMS/mcl_stairs/mod.conf @@ -1 +1,2 @@ name = mcl_stairs +depends = mcl_core, mcl_sounds, mcl_nether, mcl_end, mcl_ocean diff --git a/mods/ITEMS/mcl_throwing/depends.txt b/mods/ITEMS/mcl_throwing/depends.txt deleted file mode 100644 index 2787220e..00000000 --- a/mods/ITEMS/mcl_throwing/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core? -mcl_mobitems? -doc? -mcl_fishing diff --git a/mods/ITEMS/mcl_throwing/mod.conf b/mods/ITEMS/mcl_throwing/mod.conf index 117ca80a..4bfc2efb 100644 --- a/mods/ITEMS/mcl_throwing/mod.conf +++ b/mods/ITEMS/mcl_throwing/mod.conf @@ -1 +1,3 @@ name = mcl_throwing +depends = mcl_fishing +optional_depends = mcl_core, mcl_mobitems, doc diff --git a/mods/ITEMS/mcl_tnt/depends.txt b/mods/ITEMS/mcl_tnt/depends.txt deleted file mode 100644 index 6a235476..00000000 --- a/mods/ITEMS/mcl_tnt/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_explosions -mcl_particles -mcl_sounds? -mcl_mobitems? -mcl_death_messages? -doc_identifier? -mesecons? diff --git a/mods/ITEMS/mcl_tnt/mod.conf b/mods/ITEMS/mcl_tnt/mod.conf index 96d4584c..9d75a788 100644 --- a/mods/ITEMS/mcl_tnt/mod.conf +++ b/mods/ITEMS/mcl_tnt/mod.conf @@ -1 +1,3 @@ name = mcl_tnt +depends = mcl_explosions, mcl_particles +optional_depends = mcl_sounds, mcl_mobitems, mcl_death_messages, doc_identifier, mesecons diff --git a/mods/ITEMS/mcl_tools/depends.txt b/mods/ITEMS/mcl_tools/depends.txt deleted file mode 100644 index 3d96266d..00000000 --- a/mods/ITEMS/mcl_tools/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_sounds diff --git a/mods/ITEMS/mcl_tools/mod.conf b/mods/ITEMS/mcl_tools/mod.conf index fb522b42..f40547c2 100644 --- a/mods/ITEMS/mcl_tools/mod.conf +++ b/mods/ITEMS/mcl_tools/mod.conf @@ -1 +1,2 @@ name = mcl_tools +depends = mcl_sounds diff --git a/mods/ITEMS/mcl_torches/depends.txt b/mods/ITEMS/mcl_torches/depends.txt deleted file mode 100644 index d15228bc..00000000 --- a/mods/ITEMS/mcl_torches/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_core -mcl_sounds -mcl_particles -doc? diff --git a/mods/ITEMS/mcl_torches/description.txt b/mods/ITEMS/mcl_torches/description.txt deleted file mode 100644 index 1ce04a36..00000000 --- a/mods/ITEMS/mcl_torches/description.txt +++ /dev/null @@ -1 +0,0 @@ -Mesh-based torches - three dimensional torches for minetest. diff --git a/mods/ITEMS/mcl_torches/mod.conf b/mods/ITEMS/mcl_torches/mod.conf index ec9cfb62..b383df2a 100644 --- a/mods/ITEMS/mcl_torches/mod.conf +++ b/mods/ITEMS/mcl_torches/mod.conf @@ -1 +1,4 @@ name = mcl_torches +description = Mesh-based torches - three dimensional torches for minetest. +depends = mcl_core, mcl_sounds, mcl_particles +optional_depends = doc diff --git a/mods/ITEMS/mcl_totems/depends.txt b/mods/ITEMS/mcl_totems/depends.txt deleted file mode 100644 index 9b7650e0..00000000 --- a/mods/ITEMS/mcl_totems/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mobs_mc diff --git a/mods/ITEMS/mcl_totems/mod.conf b/mods/ITEMS/mcl_totems/mod.conf new file mode 100644 index 00000000..70c5844c --- /dev/null +++ b/mods/ITEMS/mcl_totems/mod.conf @@ -0,0 +1,2 @@ +name = mcl_totems +depends = mobs_mc diff --git a/mods/ITEMS/mcl_walls/depends.txt b/mods/ITEMS/mcl_walls/depends.txt deleted file mode 100644 index de1f8a39..00000000 --- a/mods/ITEMS/mcl_walls/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -mcl_core -mcl_end -mcl_ocean -mcl_nether -mcl_sounds -doc? diff --git a/mods/ITEMS/mcl_walls/mod.conf b/mods/ITEMS/mcl_walls/mod.conf new file mode 100644 index 00000000..8839312d --- /dev/null +++ b/mods/ITEMS/mcl_walls/mod.conf @@ -0,0 +1,3 @@ +name = mcl_walls +depends = mcl_core, mcl_end, mcl_ocean, mcl_nether, mcl_sounds +optional_depends = doc diff --git a/mods/ITEMS/mcl_wool/depends.txt b/mods/ITEMS/mcl_wool/depends.txt deleted file mode 100644 index 9699080a..00000000 --- a/mods/ITEMS/mcl_wool/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_sounds -doc? diff --git a/mods/ITEMS/mcl_wool/mod.conf b/mods/ITEMS/mcl_wool/mod.conf index 2a4f8680..b7e9a4da 100644 --- a/mods/ITEMS/mcl_wool/mod.conf +++ b/mods/ITEMS/mcl_wool/mod.conf @@ -1 +1,3 @@ name = mcl_wool +depends = mcl_sounds +optional_depends = doc diff --git a/mods/ITEMS/mclx_core/depends.txt b/mods/ITEMS/mclx_core/depends.txt deleted file mode 100644 index 870d9cb0..00000000 --- a/mods/ITEMS/mclx_core/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_core -doc? diff --git a/mods/ITEMS/mclx_core/description.txt b/mods/ITEMS/mclx_core/description.txt deleted file mode 100644 index 422e6da5..00000000 --- a/mods/ITEMS/mclx_core/description.txt +++ /dev/null @@ -1 +0,0 @@ -Core items not found in Minecraft diff --git a/mods/ITEMS/mclx_core/mod.conf b/mods/ITEMS/mclx_core/mod.conf index 235cf6d3..62e8d5fb 100644 --- a/mods/ITEMS/mclx_core/mod.conf +++ b/mods/ITEMS/mclx_core/mod.conf @@ -1 +1,4 @@ name = mclx_core +description = Core items not found in Minecraft +depends = mcl_core +optional_depends = doc diff --git a/mods/ITEMS/mclx_fences/depends.txt b/mods/ITEMS/mclx_fences/depends.txt deleted file mode 100644 index 640669f2..00000000 --- a/mods/ITEMS/mclx_fences/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_fences diff --git a/mods/ITEMS/mclx_fences/description.txt b/mods/ITEMS/mclx_fences/description.txt deleted file mode 100644 index 57005b4c..00000000 --- a/mods/ITEMS/mclx_fences/description.txt +++ /dev/null @@ -1 +0,0 @@ -Additional fences and fence gates diff --git a/mods/ITEMS/mclx_fences/mod.conf b/mods/ITEMS/mclx_fences/mod.conf index b53158aa..a4795159 100644 --- a/mods/ITEMS/mclx_fences/mod.conf +++ b/mods/ITEMS/mclx_fences/mod.conf @@ -1 +1,3 @@ name = mclx_fences +description = Additional fences and fence gates +depends = mcl_fences diff --git a/mods/ITEMS/mclx_stairs/depends.txt b/mods/ITEMS/mclx_stairs/depends.txt deleted file mode 100644 index 49805c17..00000000 --- a/mods/ITEMS/mclx_stairs/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_ocean -mcl_core -mcl_sounds -mcl_nether -mcl_end -mcl_colorblocks -mcl_stairs -doc? diff --git a/mods/ITEMS/mclx_stairs/description.txt b/mods/ITEMS/mclx_stairs/description.txt deleted file mode 100644 index 896be59b..00000000 --- a/mods/ITEMS/mclx_stairs/description.txt +++ /dev/null @@ -1 +0,0 @@ -Additional stairs and slabs not found in Minecraft 1.11 diff --git a/mods/ITEMS/mclx_stairs/mod.conf b/mods/ITEMS/mclx_stairs/mod.conf index 9d514a88..b3aecd80 100644 --- a/mods/ITEMS/mclx_stairs/mod.conf +++ b/mods/ITEMS/mclx_stairs/mod.conf @@ -1 +1,4 @@ name = mclx_stairs +description = Additional stairs and slabs not found in Minecraft 1.11 +depends = mcl_ocean, mcl_core, mcl_sounds, mcl_nether, mcl_end, mcl_colorblocks, mcl_stairs +optional_depends = doc diff --git a/mods/ITEMS/xpanes/depends.txt b/mods/ITEMS/xpanes/depends.txt deleted file mode 100644 index 812afabc..00000000 --- a/mods/ITEMS/xpanes/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_sounds -mcl_core -doc? diff --git a/mods/ITEMS/xpanes/mod.conf b/mods/ITEMS/xpanes/mod.conf new file mode 100644 index 00000000..ba214766 --- /dev/null +++ b/mods/ITEMS/xpanes/mod.conf @@ -0,0 +1,3 @@ +name = xpanes +depends = mcl_sounds, mcl_core +optional_depends = doc diff --git a/mods/MAPGEN/mcl_biomes/depends.txt b/mods/MAPGEN/mcl_biomes/depends.txt deleted file mode 100644 index 50f84ae9..00000000 --- a/mods/MAPGEN/mcl_biomes/depends.txt +++ /dev/null @@ -1,8 +0,0 @@ -mcl_init -mcl_mapgen_core -mcl_core -mcl_worlds -mcl_farming -mcl_flowers -mcl_end -mcl_ocean diff --git a/mods/MAPGEN/mcl_biomes/description.txt b/mods/MAPGEN/mcl_biomes/description.txt deleted file mode 100644 index 496ffb21..00000000 --- a/mods/MAPGEN/mcl_biomes/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds the various biomes and biome-related things for non-v6 map generators. diff --git a/mods/MAPGEN/mcl_biomes/mod.conf b/mods/MAPGEN/mcl_biomes/mod.conf new file mode 100644 index 00000000..71298826 --- /dev/null +++ b/mods/MAPGEN/mcl_biomes/mod.conf @@ -0,0 +1,3 @@ +name = mcl_biomes +description = Adds the various biomes and biome-related things for non-v6 map generators. +depends = mcl_init, mcl_mapgen_core, mcl_core, mcl_worlds, mcl_farming, mcl_flowers, mcl_end, mcl_ocean diff --git a/mods/MAPGEN/mcl_dungeons/depends.txt b/mods/MAPGEN/mcl_dungeons/depends.txt deleted file mode 100644 index 4c803c72..00000000 --- a/mods/MAPGEN/mcl_dungeons/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_init -mcl_core -mcl_chests -mcl_mobs -mcl_mobspawners -mcl_mapgen_core -mobs_mc diff --git a/mods/MAPGEN/mcl_dungeons/description.txt b/mods/MAPGEN/mcl_dungeons/description.txt deleted file mode 100644 index 343cb7bd..00000000 --- a/mods/MAPGEN/mcl_dungeons/description.txt +++ /dev/null @@ -1 +0,0 @@ -Generates random dungeons in the world diff --git a/mods/MAPGEN/mcl_dungeons/mod.conf b/mods/MAPGEN/mcl_dungeons/mod.conf index d6af72a2..2160cef4 100644 --- a/mods/MAPGEN/mcl_dungeons/mod.conf +++ b/mods/MAPGEN/mcl_dungeons/mod.conf @@ -1 +1,3 @@ name = mcl_dungeons +description = Generates random dungeons in the world +depends = mcl_init, mcl_core, mcl_chests, mcl_mobs, mcl_mobspawners, mcl_mapgen_core, mobs_mc diff --git a/mods/MAPGEN/mcl_mapgen_core/depends.txt b/mods/MAPGEN/mcl_mapgen_core/depends.txt deleted file mode 100644 index 4aa96f05..00000000 --- a/mods/MAPGEN/mcl_mapgen_core/depends.txt +++ /dev/null @@ -1,11 +0,0 @@ -mcl_init -mcl_core -biomeinfo -mclx_core? -mcl_worlds -mcl_cocoas -mcl_sponges -mcl_ocean -mcl_stairs -mcl_monster_eggs -mcl_structures diff --git a/mods/MAPGEN/mcl_mapgen_core/mod.conf b/mods/MAPGEN/mcl_mapgen_core/mod.conf index 5b5419c3..08da71ed 100644 --- a/mods/MAPGEN/mcl_mapgen_core/mod.conf +++ b/mods/MAPGEN/mcl_mapgen_core/mod.conf @@ -1 +1,3 @@ name = mcl_mapgen_core +depends = mcl_init, mcl_core, biomeinfo, mcl_worlds, mcl_cocoas, mcl_sponges, mcl_ocean, mcl_stairs, mcl_monster_eggs, mcl_structures +optional_depends = mclx_core diff --git a/mods/MAPGEN/mcl_strongholds/depends.txt b/mods/MAPGEN/mcl_strongholds/depends.txt deleted file mode 100644 index 76570fa3..00000000 --- a/mods/MAPGEN/mcl_strongholds/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_init -mcl_structures -mcl_mapgen_core diff --git a/mods/MAPGEN/mcl_strongholds/description.txt b/mods/MAPGEN/mcl_strongholds/description.txt deleted file mode 100644 index 2f761edb..00000000 --- a/mods/MAPGEN/mcl_strongholds/description.txt +++ /dev/null @@ -1 +0,0 @@ -Generates strongholds with end portals in the Overworld diff --git a/mods/MAPGEN/mcl_strongholds/mod.conf b/mods/MAPGEN/mcl_strongholds/mod.conf index 22c99de4..3ac25078 100644 --- a/mods/MAPGEN/mcl_strongholds/mod.conf +++ b/mods/MAPGEN/mcl_strongholds/mod.conf @@ -1 +1,3 @@ name = mcl_strongholds +description = Generates strongholds with end portals in the Overworld +depends = mcl_init, mcl_structures, mcl_mapgen_core diff --git a/mods/MAPGEN/mcl_structures/depends.txt b/mods/MAPGEN/mcl_structures/depends.txt deleted file mode 100644 index dc513fc7..00000000 --- a/mods/MAPGEN/mcl_structures/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_loot diff --git a/mods/MAPGEN/mcl_structures/mod.conf b/mods/MAPGEN/mcl_structures/mod.conf index 86244190..09b7c5b9 100644 --- a/mods/MAPGEN/mcl_structures/mod.conf +++ b/mods/MAPGEN/mcl_structures/mod.conf @@ -1 +1,2 @@ name = mcl_structures +depends = mcl_loot diff --git a/mods/MAPGEN/mcl_villages/depends.txt b/mods/MAPGEN/mcl_villages/depends.txt deleted file mode 100644 index 3d7a878a..00000000 --- a/mods/MAPGEN/mcl_villages/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_util -mcl_mapgen_core -mcl_structures -mcl_core -mcl_loot -mcl_farming? -mobs_mc? diff --git a/mods/MAPGEN/mcl_villages/mod.conf b/mods/MAPGEN/mcl_villages/mod.conf new file mode 100644 index 00000000..9d355ef5 --- /dev/null +++ b/mods/MAPGEN/mcl_villages/mod.conf @@ -0,0 +1,3 @@ +name = mcl_villages +depends = mcl_util, mcl_mapgen_core, mcl_structures, mcl_core, mcl_loot +optional_depends = mcl_farming, mobs_mc diff --git a/mods/MAPGEN/tsm_railcorridors/depends.txt b/mods/MAPGEN/tsm_railcorridors/depends.txt deleted file mode 100644 index 560b68a4..00000000 --- a/mods/MAPGEN/tsm_railcorridors/depends.txt +++ /dev/null @@ -1,9 +0,0 @@ -mcl_init -mcl_worlds -mcl_core -mcl_mapgen_core -mcl_loot -mcl_tnt -mcl_farming -mcl_mobspawners -mcl_minecarts diff --git a/mods/MAPGEN/tsm_railcorridors/description.txt b/mods/MAPGEN/tsm_railcorridors/description.txt deleted file mode 100644 index 33bfd506..00000000 --- a/mods/MAPGEN/tsm_railcorridors/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds simple underground mines with railways and occasional treasure chests. diff --git a/mods/MAPGEN/tsm_railcorridors/mod.conf b/mods/MAPGEN/tsm_railcorridors/mod.conf index db3b9740..b65033cf 100644 --- a/mods/MAPGEN/tsm_railcorridors/mod.conf +++ b/mods/MAPGEN/tsm_railcorridors/mod.conf @@ -1 +1,3 @@ name = tsm_railcorridors +description = Adds simple underground mines with railways and occasional treasure chests. +depends = mcl_init, mcl_worlds, mcl_core, mcl_mapgen_core, mcl_loot, mcl_tnt, mcl_farming, mcl_mobspawners, mcl_minecarts diff --git a/mods/MISC/mcl_commands/depends.txt b/mods/MISC/mcl_commands/depends.txt deleted file mode 100644 index 6e14ff13..00000000 --- a/mods/MISC/mcl_commands/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_death_messages? diff --git a/mods/MISC/mcl_commands/mod.conf b/mods/MISC/mcl_commands/mod.conf new file mode 100644 index 00000000..da5f1ac5 --- /dev/null +++ b/mods/MISC/mcl_commands/mod.conf @@ -0,0 +1,2 @@ +name = mcl_commands +optional_depends = mcl_death_messages diff --git a/mods/MISC/mcl_privs/description.txt b/mods/MISC/mcl_privs/description.txt deleted file mode 100644 index 23beb168..00000000 --- a/mods/MISC/mcl_privs/description.txt +++ /dev/null @@ -1 +0,0 @@ -Shared privileges in MineClone 2 diff --git a/mods/MISC/mcl_privs/mod.conf b/mods/MISC/mcl_privs/mod.conf new file mode 100644 index 00000000..9e99a5c7 --- /dev/null +++ b/mods/MISC/mcl_privs/mod.conf @@ -0,0 +1,2 @@ +name = mcl_privs +description = Shared privileges in MineClone 2 diff --git a/mods/MISC/mcl_temp_helper_recipes/depends.txt b/mods/MISC/mcl_temp_helper_recipes/depends.txt deleted file mode 100644 index 71556b9a..00000000 --- a/mods/MISC/mcl_temp_helper_recipes/depends.txt +++ /dev/null @@ -1,7 +0,0 @@ -mcl_core -mcl_mobitems -mcl_end -mcl_nether -mcl_ocean -mcl_stairs -xpanes diff --git a/mods/MISC/mcl_temp_helper_recipes/mod.conf b/mods/MISC/mcl_temp_helper_recipes/mod.conf new file mode 100644 index 00000000..0dcd16fa --- /dev/null +++ b/mods/MISC/mcl_temp_helper_recipes/mod.conf @@ -0,0 +1,2 @@ +name = mcl_temp_helper_recipes +depends = mcl_core, mcl_mobitems, mcl_end, mcl_nether, mcl_ocean, mcl_stairs, xpanes diff --git a/mods/MISC/mcl_wip/depends.txt b/mods/MISC/mcl_wip/depends.txt deleted file mode 100644 index 4f200147..00000000 --- a/mods/MISC/mcl_wip/depends.txt +++ /dev/null @@ -1,10 +0,0 @@ -mcl_core -mcl_fishing -mcl_maps -mcl_minecarts -doc_identifier -mobs_mc -mcl_comparators -mcl_minecarts -mcl_paintings -mcl_potions diff --git a/mods/MISC/mcl_wip/description.txt b/mods/MISC/mcl_wip/description.txt deleted file mode 100644 index d90115ac..00000000 --- a/mods/MISC/mcl_wip/description.txt +++ /dev/null @@ -1 +0,0 @@ -Development mod for MineClone 2 which add a “WIP” (Work In Progress) comment to items which are considered to be very unfinished. diff --git a/mods/MISC/mcl_wip/mod.conf b/mods/MISC/mcl_wip/mod.conf index 2af1d459..42f04641 100644 --- a/mods/MISC/mcl_wip/mod.conf +++ b/mods/MISC/mcl_wip/mod.conf @@ -1 +1,3 @@ name = mcl_wip +description = Development mod for MineClone 2 which add a “WIP” (Work In Progress) comment to items which are considered to be very unfinished. +depends = mcl_core, mcl_fishing, mcl_maps, mcl_minecarts, doc_identifier, mobs_mc, mcl_comparators, mcl_minecarts, mcl_paintings, mcl_potions diff --git a/mods/PLAYER/mcl_death_drop/depends.txt b/mods/PLAYER/mcl_death_drop/depends.txt deleted file mode 100644 index 4c2d1c21..00000000 --- a/mods/PLAYER/mcl_death_drop/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_armor -mcl_enchanting diff --git a/mods/PLAYER/mcl_death_drop/description.txt b/mods/PLAYER/mcl_death_drop/description.txt deleted file mode 100644 index 761832f6..00000000 --- a/mods/PLAYER/mcl_death_drop/description.txt +++ /dev/null @@ -1 +0,0 @@ -Makes all items in inventory drop after player death. diff --git a/mods/PLAYER/mcl_death_drop/mod.conf b/mods/PLAYER/mcl_death_drop/mod.conf index 93ed70ad..17d61584 100644 --- a/mods/PLAYER/mcl_death_drop/mod.conf +++ b/mods/PLAYER/mcl_death_drop/mod.conf @@ -1 +1,3 @@ name = mcl_death_drop +description = Makes all items in inventory drop after player death. +depends = mcl_armor, mcl_enchanting diff --git a/mods/PLAYER/mcl_hunger/depends.txt b/mods/PLAYER/mcl_hunger/depends.txt deleted file mode 100644 index ed8cc423..00000000 --- a/mods/PLAYER/mcl_hunger/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -hudbars -mcl_death_messages? diff --git a/mods/PLAYER/mcl_hunger/description.txt b/mods/PLAYER/mcl_hunger/description.txt deleted file mode 100644 index 77e6159d..00000000 --- a/mods/PLAYER/mcl_hunger/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a simple hunger meachanic with satiation, food poisoning and different healing. diff --git a/mods/PLAYER/mcl_hunger/mod.conf b/mods/PLAYER/mcl_hunger/mod.conf index a1a3d1cc..af8a3151 100644 --- a/mods/PLAYER/mcl_hunger/mod.conf +++ b/mods/PLAYER/mcl_hunger/mod.conf @@ -1 +1,4 @@ name = mcl_hunger +description = Adds a simple hunger meachanic with satiation, food poisoning and different healing. +depends = hudbars +optional_depends = mcl_death_messages diff --git a/mods/PLAYER/mcl_meshhand/depends.txt b/mods/PLAYER/mcl_meshhand/depends.txt deleted file mode 100644 index c86b5f93..00000000 --- a/mods/PLAYER/mcl_meshhand/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -mcl_tools -mcl_skins? diff --git a/mods/PLAYER/mcl_meshhand/description.txt b/mods/PLAYER/mcl_meshhand/description.txt deleted file mode 100644 index 7a4daae5..00000000 --- a/mods/PLAYER/mcl_meshhand/description.txt +++ /dev/null @@ -1 +0,0 @@ -Applies the player skin texture to the hand. diff --git a/mods/PLAYER/mcl_meshhand/mod.conf b/mods/PLAYER/mcl_meshhand/mod.conf index 6b57f4a4..0689336b 100644 --- a/mods/PLAYER/mcl_meshhand/mod.conf +++ b/mods/PLAYER/mcl_meshhand/mod.conf @@ -1 +1,4 @@ name = mcl_meshhand +description = Applies the player skin texture to the hand. +depends = mcl_tools +optional_depends = mcl_skins diff --git a/mods/PLAYER/mcl_playerinfo/depends.txt b/mods/PLAYER/mcl_playerinfo/depends.txt deleted file mode 100644 index d0334ff5..00000000 --- a/mods/PLAYER/mcl_playerinfo/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_init -mcl_core -mcl_particles -mcl_death_messages diff --git a/mods/PLAYER/mcl_playerinfo/mod.conf b/mods/PLAYER/mcl_playerinfo/mod.conf index ee2b80e7..9784feb4 100644 --- a/mods/PLAYER/mcl_playerinfo/mod.conf +++ b/mods/PLAYER/mcl_playerinfo/mod.conf @@ -1 +1,2 @@ name = mcl_playerinfo +depends = mcl_init, mcl_core, mcl_particles, mcl_death_messages diff --git a/mods/PLAYER/mcl_playerplus/depends.txt b/mods/PLAYER/mcl_playerplus/depends.txt deleted file mode 100644 index 7a259f8c..00000000 --- a/mods/PLAYER/mcl_playerplus/depends.txt +++ /dev/null @@ -1,10 +0,0 @@ -mcl_init -mcl_core -mcl_particles -mcl_hunger -mcl_death_messages -playerphysics -mcl_playerinfo -mcl_weather -mcl_spawn -mcl_enchanting diff --git a/mods/PLAYER/mcl_playerplus/description.txt b/mods/PLAYER/mcl_playerplus/description.txt deleted file mode 100644 index 4664d5f8..00000000 --- a/mods/PLAYER/mcl_playerplus/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds some simple player-related gameplay effects: Hurt by touching a cactus, suffocation and more. diff --git a/mods/PLAYER/mcl_playerplus/mod.conf b/mods/PLAYER/mcl_playerplus/mod.conf index 660def45..6d007925 100644 --- a/mods/PLAYER/mcl_playerplus/mod.conf +++ b/mods/PLAYER/mcl_playerplus/mod.conf @@ -1 +1,3 @@ name = mcl_playerplus +description = Adds some simple player-related gameplay effects: Hurt by touching a cactus, suffocation and more. +depends = mcl_init, mcl_core, mcl_particles, mcl_hunger, mcl_death_messages, playerphysics, mcl_playerinfo, mcl_weather, mcl_spawn, mcl_enchanting diff --git a/mods/PLAYER/mcl_skins/depends.txt b/mods/PLAYER/mcl_skins/depends.txt deleted file mode 100644 index 09bdf520..00000000 --- a/mods/PLAYER/mcl_skins/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -mcl_player -mcl_inventory? -intllib? -mcl_armor? diff --git a/mods/PLAYER/mcl_skins/description.txt b/mods/PLAYER/mcl_skins/description.txt deleted file mode 100644 index 61c7bff6..00000000 --- a/mods/PLAYER/mcl_skins/description.txt +++ /dev/null @@ -1 +0,0 @@ -Mod that allows players to set their individual skins. \ No newline at end of file diff --git a/mods/PLAYER/mcl_skins/mod.conf b/mods/PLAYER/mcl_skins/mod.conf index 96f82764..038f2573 100644 --- a/mods/PLAYER/mcl_skins/mod.conf +++ b/mods/PLAYER/mcl_skins/mod.conf @@ -1 +1,4 @@ name = mcl_skins +description = Mod that allows players to set their individual skins. +depends = mcl_player +optional_depends = mcl_inventory, intllib, mcl_armor diff --git a/mods/PLAYER/mcl_spawn/depends.txt b/mods/PLAYER/mcl_spawn/depends.txt deleted file mode 100644 index 3b355984..00000000 --- a/mods/PLAYER/mcl_spawn/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_init diff --git a/mods/PLAYER/mcl_spawn/description.txt b/mods/PLAYER/mcl_spawn/description.txt deleted file mode 100644 index 6712e443..00000000 --- a/mods/PLAYER/mcl_spawn/description.txt +++ /dev/null @@ -1 +0,0 @@ -Set and get the player's respawn position diff --git a/mods/PLAYER/mcl_spawn/mod.conf b/mods/PLAYER/mcl_spawn/mod.conf index ff54191b..ec2c871b 100644 --- a/mods/PLAYER/mcl_spawn/mod.conf +++ b/mods/PLAYER/mcl_spawn/mod.conf @@ -1 +1,3 @@ name = mcl_spawn +description = Set and get the player's respawn position +depends = mcl_init diff --git a/mods/PLAYER/mcl_sprint/depends.txt b/mods/PLAYER/mcl_sprint/depends.txt deleted file mode 100644 index aa6711ef..00000000 --- a/mods/PLAYER/mcl_sprint/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -mcl_playerinfo -playerphysics -mcl_hunger diff --git a/mods/PLAYER/mcl_sprint/mod.conf b/mods/PLAYER/mcl_sprint/mod.conf index 7a369245..132b6515 100644 --- a/mods/PLAYER/mcl_sprint/mod.conf +++ b/mods/PLAYER/mcl_sprint/mod.conf @@ -1 +1,2 @@ name = mcl_sprint +depends = mcl_playerinfo, playerphysics, mcl_hunger diff --git a/mods/PLAYER/playerphysics/description.txt b/mods/PLAYER/playerphysics/description.txt deleted file mode 100644 index c692c5cd..00000000 --- a/mods/PLAYER/playerphysics/description.txt +++ /dev/null @@ -1 +0,0 @@ -This mod makes it possible for multiple mods to modify player physics (speed, jumping strength, gravity) without conflict. diff --git a/mods/PLAYER/playerphysics/mod.conf b/mods/PLAYER/playerphysics/mod.conf index da01bf07..aec13ea4 100644 --- a/mods/PLAYER/playerphysics/mod.conf +++ b/mods/PLAYER/playerphysics/mod.conf @@ -1 +1,2 @@ name = playerphysics +description = This mod makes it possible for multiple mods to modify player physics (speed, jumping strength, gravity) without conflict. diff --git a/mods/PLAYER/wieldview/depends.txt b/mods/PLAYER/wieldview/depends.txt deleted file mode 100644 index 2bbf820f..00000000 --- a/mods/PLAYER/wieldview/depends.txt +++ /dev/null @@ -1 +0,0 @@ -mcl_armor diff --git a/mods/PLAYER/wieldview/description.txt b/mods/PLAYER/wieldview/description.txt deleted file mode 100644 index 0d51ad95..00000000 --- a/mods/PLAYER/wieldview/description.txt +++ /dev/null @@ -1 +0,0 @@ -Makes hand wielded items visible to other players. diff --git a/mods/PLAYER/wieldview/mod.conf b/mods/PLAYER/wieldview/mod.conf new file mode 100644 index 00000000..25b80bff --- /dev/null +++ b/mods/PLAYER/wieldview/mod.conf @@ -0,0 +1,3 @@ +name = wieldview +description = Makes hand wielded items visible to other players. +depends = mcl_armor From 95af8196a2b61db3fd3d071b4f537408ebde5e1f Mon Sep 17 00:00:00 2001 From: E Date: Mon, 3 May 2021 08:11:24 -0400 Subject: [PATCH 04/15] project: add issue & PR templates --- .gitea/issue_template/bug-report.md | 45 ++++++++++++++++++++++++ .gitea/issue_template/feature-request.md | 42 ++++++++++++++++++++++ .gitea/pull_request_template.md | 27 ++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 .gitea/issue_template/bug-report.md create mode 100644 .gitea/issue_template/feature-request.md create mode 100644 .gitea/pull_request_template.md diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md new file mode 100644 index 00000000..83cd4248 --- /dev/null +++ b/.gitea/issue_template/bug-report.md @@ -0,0 +1,45 @@ +--- + +name: "Bug Report" +about: "Use this for when something's broken." +title: "[unknown]: " +labels: + - bug + - unconfirmed + +--- + + + +## What happened? + + + +## What did I expect? + + + +## How to get it to happen + + +1. +2. +3. + +## Environment + +**Minetest** +``` +Paste the output of `minetest -v` here. +``` + +**Mineclonia**: diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md new file mode 100644 index 00000000..2702411d --- /dev/null +++ b/.gitea/issue_template/feature-request.md @@ -0,0 +1,42 @@ +--- + +name: "Feature Request" +about: "Mineclonia doesn't do something you need it to" +title: "[unknown]: " +labels: + - "missing feature" + - unconfirmed + +--- + + + +## What needs to change? + + + +## Example workflow + + +1. +2. +3. + +## Environment + +**Minetest** +``` +Paste the output of `minetest -v` here. +``` + +**Mineclonia**: diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md new file mode 100644 index 00000000..c7a3d7af --- /dev/null +++ b/.gitea/pull_request_template.md @@ -0,0 +1,27 @@ +## Problem +TRACKING ISSUE: # + + + +## Solution + + + +## Details + + + +## Testing Steps + + +1. +2. +3. From 9875183a6fa5c084a83c50f19b60fa3d46764a5d Mon Sep 17 00:00:00 2001 From: E Date: Mon, 3 May 2021 12:09:24 -0400 Subject: [PATCH 05/15] project: add optional To do list to PR template https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-22465 --- .gitea/pull_request_template.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index c7a3d7af..877c7163 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -25,3 +25,19 @@ don't need them all, delete the empty numbers. 1. 2. 3. + + + + From 438e91d212189a77c992523b712c7d49f010aca8 Mon Sep 17 00:00:00 2001 From: E Date: Tue, 4 May 2021 14:31:43 -0400 Subject: [PATCH 06/15] project: remove [unknown] tag from issue templates Reporters aren't expected to know the layout of the mods, and having the tag in the title may be confusing. https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-22640 --- .gitea/issue_template/bug-report.md | 8 -------- .gitea/issue_template/feature-request.md | 9 --------- 2 files changed, 17 deletions(-) diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md index 83cd4248..db03e703 100644 --- a/.gitea/issue_template/bug-report.md +++ b/.gitea/issue_template/bug-report.md @@ -2,20 +2,12 @@ name: "Bug Report" about: "Use this for when something's broken." -title: "[unknown]: " labels: - bug - unconfirmed --- - - ## What happened? diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index 2702411d..5c2294cf 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -2,21 +2,12 @@ name: "Feature Request" about: "Mineclonia doesn't do something you need it to" -title: "[unknown]: " labels: - "missing feature" - unconfirmed --- - - ## What needs to change? From 1738d57a2caf6a04d88a21aba209ab7e3c138d25 Mon Sep 17 00:00:00 2001 From: E Date: Tue, 4 May 2021 14:38:20 -0400 Subject: [PATCH 07/15] project: add title instructions to PR template --- .gitea/pull_request_template.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index 877c7163..ef0d3193 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -1,3 +1,11 @@ + ## Problem TRACKING ISSUE: # From 7f9ad443acbd8cf4fd6391afcf3c1779573d274d Mon Sep 17 00:00:00 2001 From: E Date: Wed, 5 May 2021 08:52:12 -0400 Subject: [PATCH 08/15] project: simplify Environment section for issue templates --- .gitea/issue_template/bug-report.md | 15 ++++++++++----- .gitea/issue_template/feature-request.md | 15 ++++++++++----- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md index db03e703..191c92ed 100644 --- a/.gitea/issue_template/bug-report.md +++ b/.gitea/issue_template/bug-report.md @@ -29,9 +29,14 @@ don't need them all, delete the empty numbers. ## Environment -**Minetest** -``` -Paste the output of `minetest -v` here. -``` +**Mineclonia Version**: -**Mineclonia**: + +**Minetest Version**: +**Operating System**: +**CPU Type**: +**RAM**: +**Graphics Card**: diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index 5c2294cf..f484099d 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -25,9 +25,14 @@ don't need them all, delete the empty numbers. ## Environment -**Minetest** -``` -Paste the output of `minetest -v` here. -``` +**Mineclonia Version**: -**Mineclonia**: + +**Minetest Version**: +**Operating System**: +**CPU Type**: +**RAM**: +**Graphics Card**: From 838bf0034fecc2ec2bf23969327846910fbf76f8 Mon Sep 17 00:00:00 2001 From: E Date: Wed, 5 May 2021 09:09:06 -0400 Subject: [PATCH 09/15] project: simplify Feature Request template https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-22682 --- .gitea/issue_template/feature-request.md | 28 +++--------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index f484099d..2b04baf4 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -3,8 +3,7 @@ name: "Feature Request" about: "Mineclonia doesn't do something you need it to" labels: - - "missing feature" - - unconfirmed + - "feature request" --- @@ -12,27 +11,6 @@ labels: -## Example workflow +## Solution - -1. -2. -3. - -## Environment - -**Mineclonia Version**: - - -**Minetest Version**: -**Operating System**: -**CPU Type**: -**RAM**: -**Graphics Card**: + From c9c568847c9aac3f437a8d5b9678d9293cc96484 Mon Sep 17 00:00:00 2001 From: E Date: Thu, 6 May 2021 08:12:26 -0400 Subject: [PATCH 10/15] project: change wording of problem section in feature request template https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-22813 --- .gitea/issue_template/feature-request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index 2b04baf4..83428f9e 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -7,7 +7,7 @@ labels: --- -## What needs to change? +## Problem From 32c7fe4741a74d2dd5e2105762715b3aa6ebb64b Mon Sep 17 00:00:00 2001 From: E Date: Sun, 9 May 2021 21:33:39 -0400 Subject: [PATCH 11/15] project: change headings to level 5 https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-22917 --- .gitea/issue_template/bug-report.md | 8 ++++---- .gitea/issue_template/feature-request.md | 4 ++-- .gitea/pull_request_template.md | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md index 191c92ed..68f9ceea 100644 --- a/.gitea/issue_template/bug-report.md +++ b/.gitea/issue_template/bug-report.md @@ -8,15 +8,15 @@ labels: --- -## What happened? +###### What happened? -## What did I expect? +###### What did I expect? -## How to get it to happen +###### How to get it to happen diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index 83428f9e..fea4498a 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -7,10 +7,10 @@ labels: --- -## Problem +###### Problem -## Solution +###### Solution diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index ef0d3193..86f81df7 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -6,7 +6,7 @@ type of banner to mcl_banners, the title should look like: items/mcl_banners: add new banner type --> -## Problem +###### Problem TRACKING ISSUE: # -## Solution +###### Solution -## Details +###### Details -## Testing Steps +###### Testing Steps + ###### Solution From dd8bcaec5078863432331cd27eeff34f9de45209 Mon Sep 17 00:00:00 2001 From: E Date: Sun, 16 May 2021 14:58:10 -0400 Subject: [PATCH 13/15] project: un-bold bug-report environment fields https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-23257 --- .gitea/issue_template/bug-report.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md index 68f9ceea..5a447087 100644 --- a/.gitea/issue_template/bug-report.md +++ b/.gitea/issue_template/bug-report.md @@ -29,14 +29,14 @@ don't need them all, delete the empty numbers. ###### Environment -**Mineclonia Version**: +Mineclonia Version: -**Minetest Version**: -**Operating System**: -**CPU Type**: -**RAM**: -**Graphics Card**: +Minetest Version: +Operating System: +CPU Type: +RAM: +Graphics Card: From 42205639f68cfc962e2051676fc50b288fbc0dce Mon Sep 17 00:00:00 2001 From: E Date: Sun, 16 May 2021 15:02:56 -0400 Subject: [PATCH 14/15] project: make the headers *actually* level 5 https://git.minetest.land/Mineclonia/Mineclonia/pulls/56#issuecomment-23257 --- .gitea/issue_template/bug-report.md | 8 ++++---- .gitea/issue_template/feature-request.md | 4 ++-- .gitea/pull_request_template.md | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitea/issue_template/bug-report.md b/.gitea/issue_template/bug-report.md index 5a447087..b9e50f07 100644 --- a/.gitea/issue_template/bug-report.md +++ b/.gitea/issue_template/bug-report.md @@ -8,15 +8,15 @@ labels: --- -###### What happened? +##### What happened? -###### What did I expect? +##### What did I expect? -###### How to get it to happen +##### How to get it to happen diff --git a/.gitea/issue_template/feature-request.md b/.gitea/issue_template/feature-request.md index 9c780c59..788458c8 100644 --- a/.gitea/issue_template/feature-request.md +++ b/.gitea/issue_template/feature-request.md @@ -7,7 +7,7 @@ labels: --- -###### Problem +##### Problem -###### Solution +##### Solution diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index 86f81df7..a5cd91e9 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -6,7 +6,7 @@ type of banner to mcl_banners, the title should look like: items/mcl_banners: add new banner type --> -###### Problem +##### Problem TRACKING ISSUE: # -###### Solution +##### Solution -###### Details +##### Details -###### Testing Steps +##### Testing Steps Minetest Version: -Operating System: -CPU Type: -RAM: -Graphics Card: