diff --git a/README.md b/README.md index 453fce1..fdea6c7 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Maintenance updates: * Added fuel recipes for wooden-based things * Changed a few confusing recipes to make more sense * Improved textures for cut glass, obsidian glass and woodframed glass -* Improved side texture of wood frame +* Improved side texture of wood frame and rusty bar * Add honey and cushion block to creative inventory * Doors now count as nodes in creative inventory * Storage blocks now drop their inventory when exploded diff --git a/src/nodes.lua b/src/nodes.lua index 4c350bb..1b06911 100644 --- a/src/nodes.lua +++ b/src/nodes.lua @@ -39,6 +39,7 @@ register_pane("chainlink", S("Chainlink"), { register_pane("rusty_bar", S("Rusty Iron Bars"), { sounds = default.node_sound_stone_defaults(), + textures = {"xdecor_rusty_bar.png", "", "xdecor_rusty_bar_top.png"}, groups = {cracky = 2, pane = 1}, recipe = { {"default:iron_lump", "default:iron_lump", "default:iron_lump"}, diff --git a/textures/xdecor_rusty_bar.png b/textures/xdecor_rusty_bar.png index d2d5866..382d7ca 100644 Binary files a/textures/xdecor_rusty_bar.png and b/textures/xdecor_rusty_bar.png differ diff --git a/textures/xdecor_rusty_bar_top.png b/textures/xdecor_rusty_bar_top.png new file mode 100644 index 0000000..a408e1b Binary files /dev/null and b/textures/xdecor_rusty_bar_top.png differ