Fixed remaining wrong names in 3d_armor_classes

This commit is contained in:
LeMagnesium 2015-07-27 19:12:32 +02:00
parent fd8752a08c
commit 403895e8e4
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
if ARMOR_MATERIALS.black_mithril then
if ARMOR_MATERIALS.blackmithril then
-- Register helmets :
minetest.register_tool(":3d_armor:helmet_blackmithril", {
description = "Black Mithril Helmet",

View File

@ -1,4 +1,4 @@
if ARMOR_MATERIALS.hardened_leather then
if ARMOR_MATERIALS.hardenedleather then
-- Register helmets :
minetest.register_tool(":3d_armor:helmet_hardenedleather", {
description = "Hardened Leather Helmet",

View File

@ -1,8 +1,8 @@
if ARMOR_MATERIALS.reinforced_leather then
if ARMOR_MATERIALS.reinforcedleather then
-- Register helmets :
minetest.register_tool(":3d_armor:helmet_reinforcedleather", {
description = "Hunter's Reinforced Leather Helmet",
inventory_image = "3d_armor_inv_helmet_reinforced_leather_hunter.png",
inventory_image = "3d_armor_inv_helmet_reinforcedleather.png",
groups = {armor_head = 6, armor_heal = 0, armor_use = 40},
wear = 0,
})