diff options
author | cheapie <no-email-for-you@example.com> | 2013-12-20 19:43:32 -0800 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2013-12-20 19:43:32 -0800 |
commit | 539b9c9218c1471856bffb5beee0a69b2e2a58cb (patch) | |
tree | 60adfe2f0956bf27ff72b682a78c46c90c88aea5 | |
parent | 6389840f4f0a3cf432c5c77fb5b5dc97189677e3 (diff) | |
parent | 2df56ec29b9f0048f395c98118175b87b21061c3 (diff) | |
download | plasticbox-539b9c9218c1471856bffb5beee0a69b2e2a58cb.tar plasticbox-539b9c9218c1471856bffb5beee0a69b2e2a58cb.tar.gz plasticbox-539b9c9218c1471856bffb5beee0a69b2e2a58cb.tar.bz2 plasticbox-539b9c9218c1471856bffb5beee0a69b2e2a58cb.tar.xz plasticbox-539b9c9218c1471856bffb5beee0a69b2e2a58cb.zip |
Merge pull request #5 from kizeren/master
Finishing up the displayed names in game.
-rw-r--r-- | init.lua | 42 |
1 files changed, 21 insertions, 21 deletions
@@ -1,18 +1,18 @@ plasticbox = {} plasticbox.colorlist = { - {"black", "Black Plastic Stairs"}, - {"blue", "Blue Plastic Stairs"}, - {"brown", "Brown Plastic Stairs"}, - {"cyan", "Cyan Plastic Stairs"}, - {"green", "Green Plastic Stairs"}, - {"grey", "Grey Plastic Stairs"}, - {"magenta", "Magenta Plastic Stairs"}, - {"orange", "Orange Plastic Stairs"}, - {"pink", "Pink Plastic Stairs"}, - {"red", "Red Plastic Stairs"}, - {"violet", "Violet Plastic Stairs"}, - {"white", "White Plastic Stairs"}, - {"yellow", "Yellow Plastic Stairs"}, + {"black", "Black Plastic"}, + {"blue", "Blue Plastic"}, + {"brown", "Brown Plastic"}, + {"cyan", "Cyan Plastic"}, + {"green", "Green Plastic"}, + {"grey", "Grey Plastic"}, + {"magenta", "Magenta Plastic"}, + {"orange", "Orange Plastic"}, + {"pink", "Pink Plastic"}, + {"red", "Red Plastic"}, + {"violet", "Violet Plastic"}, + {"white", "White Plastic"}, + {"yellow", "Yellow Plastic"}, } @@ -219,7 +219,7 @@ if minetest.get_modpath("moreblocks") then { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox.png", }, - "plasticbox", + "Plastic", "plasticbox", 0 ) @@ -230,7 +230,7 @@ if minetest.get_modpath("moreblocks") then { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox.png", }, - "plasticbox", + "Plastic", "plasticbox", 0 ) @@ -242,7 +242,7 @@ if minetest.get_modpath("moreblocks") then { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox.png", }, - "plasticbox", + "Plastic", "plasticbox", 0 ) @@ -254,7 +254,7 @@ if minetest.get_modpath("moreblocks") then { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox.png", }, - "plasticbox", + "Plastic", "plasticbox", 0 ) @@ -276,7 +276,7 @@ for i in ipairs(plasticbox.colorlist) do { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox_"..colorname..".png", }, - "plasticbox_"..desc, + desc, "plasticbox_"..colorname, 0 ) @@ -287,7 +287,7 @@ for i in ipairs(plasticbox.colorlist) do { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox_"..colorname..".png", }, - "plasticbox_"..desc, + desc, "plasticbox_"..colorname, 0 ) @@ -299,7 +299,7 @@ for i in ipairs(plasticbox.colorlist) do { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox_"..colorname..".png", }, - "plasticbox_"..desc, + desc, "plasticbox_"..colorname, 0 ) @@ -311,7 +311,7 @@ for i in ipairs(plasticbox.colorlist) do { snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2 }, { "plasticbox_"..colorname..".png", }, - "plasticbox_"..desc, + desc, "plasticbox_"..colorname, 0 ) |