]> git.lizzy.rs Git - minetest.git/commitdiff
Add textures for air and ignore items (#5196)
authorWuzzy <wuzzy2@mail.ru>
Fri, 10 Feb 2017 07:19:31 +0000 (08:19 +0100)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Fri, 10 Feb 2017 07:19:31 +0000 (08:19 +0100)
builtin/game/register.lua
textures/base/pack/air.png [new file with mode: 0644]
textures/base/pack/ignore.png [new file with mode: 0644]

index 90f095e9fc51f56be97875b78654051568a3c8ab..ec6f28097c8543698e8d9bceb20def960c1f0ea2 100644 (file)
@@ -331,8 +331,8 @@ core.register_item(":unknown", {
 
 core.register_node(":air", {
        description = "Air (you hacker you!)",
-       inventory_image = "unknown_node.png",
-       wield_image = "unknown_node.png",
+       inventory_image = "air.png",
+       wield_image = "air.png",
        drawtype = "airlike",
        paramtype = "light",
        sunlight_propagates = true,
@@ -348,8 +348,8 @@ core.register_node(":air", {
 
 core.register_node(":ignore", {
        description = "Ignore (you hacker you!)",
-       inventory_image = "unknown_node.png",
-       wield_image = "unknown_node.png",
+       inventory_image = "ignore.png",
+       wield_image = "ignore.png",
        drawtype = "airlike",
        paramtype = "none",
        sunlight_propagates = false,
diff --git a/textures/base/pack/air.png b/textures/base/pack/air.png
new file mode 100644 (file)
index 0000000..e2c4872
Binary files /dev/null and b/textures/base/pack/air.png differ
diff --git a/textures/base/pack/ignore.png b/textures/base/pack/ignore.png
new file mode 100644 (file)
index 0000000..a73d222
Binary files /dev/null and b/textures/base/pack/ignore.png differ