mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2024-11-22 20:43:43 +01:00
Log warning of unused mods when dependencies are missing
This commit is contained in:
parent
ea86aa35f5
commit
348dad3d4d
@ -1,2 +1,2 @@
|
||||
3d_armor
|
||||
technic
|
||||
technic?
|
||||
|
@ -1,3 +1,8 @@
|
||||
if not minetest.get_modpath("technic") then
|
||||
minetest.log("warning", "hazmat_suit: Mod loaded but unused.")
|
||||
return
|
||||
end
|
||||
|
||||
local part_count = 4
|
||||
|
||||
local level = 35
|
||||
|
@ -1,3 +1,3 @@
|
||||
3d_armor
|
||||
technic_worldgen
|
||||
technic_worldgen?
|
||||
moreores?
|
||||
|
@ -1,3 +1,8 @@
|
||||
if not minetest.get_modpath("technic_worldgen") then
|
||||
minetest.log("warning", "technic_armor: Mod loaded but unused.")
|
||||
return
|
||||
end
|
||||
|
||||
local stats = {
|
||||
lead = { name="Lead", material="technic:lead_ingot", armor=1.6, heal=0, use=500, radiation=80*1.1 },
|
||||
brass = { name="Brass", material="technic:brass_ingot", armor=1.8, heal=0, use=650, radiation=43 },
|
||||
|
Loading…
Reference in New Issue
Block a user