Skip to content

Commit f5d4494

Browse files
Wuzzy2nerzhul
authored andcommittedFeb 10, 2017
Add textures for air and ignore items (#5196)
1 parent 74b670a commit f5d4494

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎builtin/game/register.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ core.register_item(":unknown", {
331331

332332
core.register_node(":air", {
333333
description = "Air (you hacker you!)",
334-
inventory_image = "unknown_node.png",
335-
wield_image = "unknown_node.png",
334+
inventory_image = "air.png",
335+
wield_image = "air.png",
336336
drawtype = "airlike",
337337
paramtype = "light",
338338
sunlight_propagates = true,
@@ -348,8 +348,8 @@ core.register_node(":air", {
348348

349349
core.register_node(":ignore", {
350350
description = "Ignore (you hacker you!)",
351-
inventory_image = "unknown_node.png",
352-
wield_image = "unknown_node.png",
351+
inventory_image = "ignore.png",
352+
wield_image = "ignore.png",
353353
drawtype = "airlike",
354354
paramtype = "none",
355355
sunlight_propagates = false,

‎textures/base/pack/air.png

225 Bytes
Loading

‎textures/base/pack/ignore.png

234 Bytes
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.