Skip to content

Commit

Permalink
textures adhere to naming convention. Solves h-v-smacker#2
Browse files Browse the repository at this point in the history
  • Loading branch information
AliasAlreadyTaken committed Aug 24, 2020
1 parent 755526d commit 9a5dcfe
Show file tree
Hide file tree
Showing 34 changed files with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft_type then
unified_inventory.register_craft_type("pickling", {
description = "Dark room, wooden shelf",
icon = "pickling_icon.png",
icon = "canned_food_pickling_icon.png",
width = 1,
height = 1,
uses_crafting_grid = false,
Expand Down Expand Up @@ -305,9 +305,9 @@ for product, def in pairs(canned_food_definitions) do
local nodetable = {
description = def.proper_name,
drawtype = "plantlike",
tiles = {product .. ".png"},
inventory_image = product .. ".png",
wield_image = product .. ".png",
tiles = {"canned_food_" .. product .. ".png"},
inventory_image = "canned_food_" .. product .. ".png",
wield_image = "canned_food_" .. product .. ".png",
paramtype = "light",
is_ground_content = false,
walkable = false,
Expand Down Expand Up @@ -367,9 +367,9 @@ for product, def in pairs(canned_food_definitions) do
minetest.register_node("canned_food:" .. product .."_plus", {
description = def.transforms,
drawtype = "plantlike",
tiles = {product .. ".png^paper_lid_cover.png"},
inventory_image = product .. ".png^paper_lid_cover.png",
wield_image = product .. ".png^paper_lid_cover.png",
tiles = {"canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png"},
inventory_image = "canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png",
wield_image = "canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png",
paramtype = "light",
is_ground_content = false,
walkable = false,
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 9a5dcfe

Please sign in to comment.