1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-01-26 01:30:29 +01:00

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 : -- Register helmets :
minetest.register_tool(":3d_armor:helmet_blackmithril", { minetest.register_tool(":3d_armor:helmet_blackmithril", {
description = "Black Mithril Helmet", description = "Black Mithril Helmet",

View File

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

View File

@ -1,8 +1,8 @@
if ARMOR_MATERIALS.reinforced_leather then if ARMOR_MATERIALS.reinforcedleather then
-- Register helmets : -- Register helmets :
minetest.register_tool(":3d_armor:helmet_reinforcedleather", { minetest.register_tool(":3d_armor:helmet_reinforcedleather", {
description = "Hunter's Reinforced Leather Helmet", 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}, groups = {armor_head = 6, armor_heal = 0, armor_use = 40},
wear = 0, wear = 0,
}) })