Skip to content

Commit

Permalink
Add textures for air and ignore items (#5196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy2 authored and nerzhul committed Feb 10, 2017
1 parent 74b670a commit f5d4494
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builtin/game/register.lua
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
Binary file added textures/base/pack/air.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added textures/base/pack/ignore.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f5d4494

Please sign in to comment.