diff --git a/mods/WorldEdit/worldedit_commands/init.lua b/mods/WorldEdit/worldedit_commands/init.lua index 2209a8fb..3d089e19 100755 --- a/mods/WorldEdit/worldedit_commands/init.lua +++ b/mods/WorldEdit/worldedit_commands/init.lua @@ -819,6 +819,8 @@ minetest.register_chatcommand("/hide", { end), }) +local check_set -- Actual garbage for an unknown global variable + minetest.register_chatcommand("/suppress", { params = "", description = "Suppress all in the current WorldEdit region non-destructively", diff --git a/mods/homedecor_modpack/.gitignore b/mods/homedecor_modpack/.gitignore old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/README b/mods/homedecor_modpack/README old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/depends.txt b/mods/homedecor_modpack/building_blocks/depends.txt old mode 100755 new mode 100644 index 9771003c..b5fb120d --- a/mods/homedecor_modpack/building_blocks/depends.txt +++ b/mods/homedecor_modpack/building_blocks/depends.txt @@ -1,2 +1,2 @@ -default +default moreblocks? \ No newline at end of file diff --git a/mods/homedecor_modpack/building_blocks/init.lua b/mods/homedecor_modpack/building_blocks/init.lua old mode 100755 new mode 100644 index 434058fd..e2a8e65b --- a/mods/homedecor_modpack/building_blocks/init.lua +++ b/mods/homedecor_modpack/building_blocks/init.lua @@ -1,538 +1,538 @@ -minetest.register_node("building_blocks:Adobe", { - tiles = {"building_blocks_Adobe.png"}, - description = "Adobe", - is_ground_content = true, - groups = {crumbly=3}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("building_blocks:Roofing", { - tiles = {"building_blocks_Roofing.png"}, - is_ground_content = true, - description = "Roof block", - groups = {snappy=3}, -}) -minetest.register_craft({ - output = 'building_blocks:terrycloth_towel 2', - recipe = { - {"farming:string", "farming:string", "farming:string"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:Tarmac_spread 4', - recipe = { - {"building_blocks:Tar", "building_blocks:Tar"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:gravel_spread 4', - recipe = { - {"default:gravel", "default:gravel", "default:gravel"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:brobble_spread 4', - recipe = { - {"default:brick", "default:cobble", "default:brick"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:Fireplace 1', - recipe = { - {"default:steel_ingot", "building_blocks:sticks", "default:steel_ingot"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:Adobe 3', - recipe = { - {"default:sand"}, - {"default:clay"}, - {"group:stick"}, - } -}) - -minetest.register_craft({ - output = 'building_blocks:Roofing 10', - recipe = { - {"building_blocks:Adobe", "building_blocks:Adobe"}, - {"building_blocks:Adobe", "building_blocks:Adobe"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:BWtile 10', - recipe = { - {"building_blocks:Marble", "building_blocks:Tar"}, - {"building_blocks:Tar", "building_blocks:Marble"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:grate 1', - recipe = { - {"default:steel_ingot", "default:steel_ingot"}, - {"default:glass", "default:glass"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:woodglass 1', - recipe = { - {"default:wood"}, - {"default:glass"}, - } -}) -minetest.register_craft({ - output = 'building_blocks:hardwood 2', - recipe = { - {"default:wood", "default:junglewood"}, - {"default:junglewood", "default:wood"}, - } -}) - -minetest.register_craft({ - output = 'building_blocks:hardwood 2', - recipe = { - {"default:junglewood", "default:wood"}, - {"default:wood", "default:junglewood"}, - } -}) - -minetest.register_craft({ - output = 'building_blocks:sticks', - recipe = { - {'group:stick', 'group:stick'}, - {'group:stick', 'group:stick'}, - } -}) - -minetest.register_craft({ - output = 'building_blocks:fakegrass 2', - recipe = { - {'default:leaves'}, - {"default:dirt"}, - } -}) - -minetest.register_craft({ - output = 'building_blocks:tar_base 2', - recipe = { - {"default:coal_lump", "default:gravel"}, - {"default:gravel", "default:coal_lump"} - } -}) - -minetest.register_craft({ - output = 'building_blocks:tar_base 2', - recipe = { - {"default:gravel", "default:coal_lump"}, - {"default:coal_lump", "default:gravel"} - } -}) - -minetest.register_craft({ - type = "cooking", - output = "building_blocks:smoothglass", - recipe = "default:glass" -}) -minetest.register_node("building_blocks:smoothglass", { - drawtype = "glasslike", - description = "Streak Free Glass", - tiles = {"building_blocks_sglass.png"}, - inventory_image = minetest.inventorycube("building_blocks_sglass.png"), - paramtype = "light", - sunlight_propagates = true, - is_ground_content = true, - groups = {snappy=3,cracky=3,oddly_breakable_by_hand=3}, - sounds = default.node_sound_glass_defaults(), -}) -minetest.register_node("building_blocks:grate", { - drawtype = "glasslike", - description = "Grate", - tiles = {"building_blocks_grate.png"}, - inventory_image = minetest.inventorycube("building_blocks_grate.png"), - paramtype = "light", - sunlight_propagates = true, - is_ground_content = true, - groups = {cracky=1}, - sounds = default.node_sound_stone_defaults(), -}) - -minetest.register_node("building_blocks:Fireplace", { - description = "Fireplace", - tiles = { - "building_blocks_cast_iron.png", - "building_blocks_cast_iron.png", - "building_blocks_cast_iron.png", - "building_blocks_cast_iron_fireplace.png" - }, - paramtype = "light", - paramtype2 = "facedir", - light_source = LIGHT_MAX, - sunlight_propagates = true, - is_ground_content = true, - groups = {cracky=2}, -}) - -minetest.register_node("building_blocks:woodglass", { - drawtype = "glasslike", - description = "Wood Framed Glass", - tiles = {"building_blocks_wglass.png"}, - inventory_image = minetest.inventorycube("building_blocks_wglass.png"), - paramtype = "light", - sunlight_propagates = true, - is_ground_content = true, - groups = {snappy=3,cracky=3,oddly_breakable_by_hand=3}, - sounds = default.node_sound_glass_defaults(), -}) -minetest.register_node("building_blocks:terrycloth_towel", { - drawtype = "raillike", - description = "Terrycloth towel", - tiles = {"building_blocks_towel.png"}, - inventory_image = "building_blocks_towel_inv.png", - paramtype = "light", - walkable = false, - selection_box = { - type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, - }, - sunlight_propagates = true, - is_ground_content = true, - groups = {crumbly=3}, -}) -minetest.register_node("building_blocks:Tarmac_spread", { - drawtype = "raillike", - description = "Tarmac Spread", - tiles = {"building_blocks_tar.png"}, - inventory_image = "building_blocks_tar_spread_inv.png", - paramtype = "light", - walkable = false, - selection_box = { - type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, - }, - sunlight_propagates = true, - is_ground_content = true, - groups = {cracky=3}, -}) -minetest.register_node("building_blocks:BWtile", { - drawtype = "raillike", - description = "Chess board tiling", - tiles = {"building_blocks_BWtile.png"}, - inventory_image = "building_blocks_bwtile_inv.png", - paramtype = "light", - walkable = false, - selection_box = { - type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, - }, - sunlight_propagates = true, - is_ground_content = true, - groups = {crumbly=3}, -}) -minetest.register_node("building_blocks:brobble_spread", { - drawtype = "raillike", - description = "Brobble Spread", - tiles = {"building_blocks_brobble.png"}, - inventory_image = "building_blocks_brobble_spread_inv.png", - paramtype = "light", - walkable = false, - selection_box = { - type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, - }, - sunlight_propagates = true, - is_ground_content = true, - groups = {crumbly=3}, -}) -minetest.register_node("building_blocks:gravel_spread", { - drawtype = "raillike", - description = "Gravel Spread", - tiles = {"default_gravel.png"}, - inventory_image = "building_blocks_gravel_spread_inv.png", - paramtype = "light", - walkable = false, - selection_box = { - type = "fixed", - -- but how to specify the dimensions for curved and sideways rails? - fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, - }, - sunlight_propagates = true, - is_ground_content = true, - groups = {crumbly=2}, -}) -minetest.register_node("building_blocks:hardwood", { - tiles = {"building_blocks_hardwood.png"}, - is_ground_content = true, - description = "Hardwood", - groups = {choppy=1,flammable=1}, - sounds = default.node_sound_wood_defaults(), -}) - -if minetest.get_modpath("moreblocks") then - - stairsplus:register_all( - "building_blocks", - "marble", - "building_blocks:Marble", - { - description = "Marble", - tiles = {"building_blocks_marble.png"}, - groups = {cracky=3}, - sounds = default.node_sound_stone_defaults(), - } - ) - stairsplus:register_all( - "building_blocks", - "hardwood", - "building_blocks:hardwood", - { - description = "Hardwood", - tiles = {"building_blocks_hardwood.png"}, - groups = {choppy=1,flammable=1}, - sounds = default.node_sound_wood_defaults(), - } - ) - stairsplus:register_all( - "building_blocks", - "fakegrass", - "building_blocks:fakegrass", - { - description = "Grass", - tiles = {"default_grass.png"}, - groups = {crumbly=3}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), - } - ) - stairsplus:register_all( - "building_blocks", - "tar", - "building_blocks:Tar", - { - description = "Tar", - tiles = {"building_blocks_tar.png"}, - groups = {crumbly=1}, - sounds = default.node_sound_stone_defaults(), - } - ) - stairsplus:register_all( - "building_blocks", - "grate", - "building_blocks:grate", - { - description = "Grate", - tiles = {"building_blocks_grate.png"}, - groups = {cracky=1}, - sounds = default.node_sound_stone_defaults(), - } - ) - -else - bb_stairs = {} - - -- Node will be called stairs:stair_ - function bb_stairs.register_stair(subname, recipeitem, groups, images, description) - minetest.register_node("building_blocks:stair_" .. subname, { - description = description, - drawtype = "nodebox", - tiles = images, - paramtype = "light", - paramtype2 = "facedir", - is_ground_content = true, - groups = groups, - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, 0, 0.5, 0.5, 0.5}, - }, - }, - }) - - minetest.register_craft({ - output = 'building_blocks:stair_' .. subname .. ' 4', - recipe = { - {recipeitem, "", ""}, - {recipeitem, recipeitem, ""}, - {recipeitem, recipeitem, recipeitem}, - }, - }) - - -- Flipped recipe for the silly minecrafters - minetest.register_craft({ - output = 'building_blocks:stair_' .. subname .. ' 4', - recipe = { - {"", "", recipeitem}, - {"", recipeitem, recipeitem}, - {recipeitem, recipeitem, recipeitem}, - }, - }) - end - - -- Node will be called stairs:slab_ - function bb_stairs.register_slab(subname, recipeitem, groups, images, description) - minetest.register_node("building_blocks:slab_" .. subname, { - description = description, - drawtype = "nodebox", - tiles = images, - paramtype = "light", - is_ground_content = true, - groups = groups, - node_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - }, - selection_box = { - type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - }, - }) - - minetest.register_craft({ - output = 'building_blocks:slab_' .. subname .. ' 3', - recipe = { - {recipeitem, recipeitem, recipeitem}, - }, - }) - end - - -- Nodes will be called stairs:{stair,slab}_ - function bb_stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab) - bb_stairs.register_stair(subname, recipeitem, groups, images, desc_stair) - bb_stairs.register_slab(subname, recipeitem, groups, images, desc_slab) - end - bb_stairs.register_stair_and_slab("marble","building_blocks:Marble", - {cracky=3}, - {"building_blocks_marble.png"}, - "Marble stair", - "Marble slab" - ) - bb_stairs.register_stair_and_slab("hardwood","building_blocks:hardwood", - {choppy=1,flammable=1}, - {"building_blocks_hardwood.png"}, - "Hardwood stair", - "Hardwood slab" - ) - bb_stairs.register_stair_and_slab("fakegrass","building_blocks:fakegrass", - {crumbly=3}, - {"default_grass.png"}, - "Grass stair", - "Grass slab" - ) - bb_stairs.register_stair_and_slab("tar","building_blocks:Tar", - {crumbly=1}, - {"building_blocks_tar.png"}, - "Tar stair", - "Tar slab" - ) - bb_stairs.register_stair_and_slab("grate","building_blocks:grate", - {cracky=1}, - {"building_blocks_grate.png"}, - "Grate Stair", - "Grate Slab" - ) -end - - -minetest.register_craft({ - type = "fuel", - recipe = "building_blocks:hardwood", - burntime = 28, -}) - -minetest.register_node("building_blocks:fakegrass", { - tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, - description = "Fake Grass", - is_ground_content = true, - groups = {crumbly=3}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), -}) - -minetest.register_craftitem("building_blocks:sticks", { - description = "Small bundle of sticks", - image = "building_blocks_sticks.png", - on_place_on_ground = minetest.craftitem_place_item, -}) - -minetest.register_craftitem("building_blocks:tar_base", { - description = "Tar base", - image = "building_blocks_tar_base.png", -}) - ---Tar -minetest.register_craft({ - output = 'building_blocks:knife 1', - recipe = { - {"building_blocks:Tar"}, - {"group:stick"}, - } -}) - -minetest.register_alias("tar", "building_blocks:Tar") -minetest.register_alias("fakegrass", "building_blocks:fakegrass") -minetest.register_alias("tar_knife", "building_blocks:knife") -minetest.register_alias("adobe", "building_blocks:Adobe") -minetest.register_alias("building_blocks_roofing", "building_blocks:Roofing") -minetest.register_alias("hardwood", "building_blocks:hardwood") -minetest.register_alias("sticks", "building_blocks:sticks") -minetest.register_alias("building_blocks:faggot", "building_blocks:sticks") -minetest.register_alias("marble", "building_blocks:Marble") - -minetest.register_node("building_blocks:Tar", { - description = "Tar", - tiles = {"building_blocks_tar.png"}, - is_ground_content = true, - groups = {crumbly=1}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_node("building_blocks:Marble", { - description = "Marble", - tiles = {"building_blocks_marble.png"}, - is_ground_content = true, - groups = {cracky=3}, - sounds = default.node_sound_stone_defaults(), -}) -minetest.register_craft({ - type = "fuel", - recipe = "building_blocks:sticks", - burntime = 5, -}) -minetest.register_craft({ - type = "fuel", - recipe = "building_blocks:Tar", - burntime = 40, -}) - -minetest.register_craft({ - type = "cooking", - output = "building_blocks:Tar", - recipe = "building_blocks:tar_base", -}) - -minetest.register_tool("building_blocks:knife", { - description = "Tar Knife", - inventory_image = "building_blocks_knife.png", - tool_capabilities = { - max_drop_level=0, - groupcaps={ - choppy={times={[2]=7.50, [3]=2.80}, maxwear=0.01, maxlevel=1}, - fleshy={times={[2]=5.50, [3]=2.80}, maxwear=0.01, maxlevel=1} - } - }, -}) - -minetest.add_to_creative_inventory('building_blocks:Tar 0') -minetest.add_to_creative_inventory('building_blocks:hardwood 0') -minetest.register_craft({ - output = "building_blocks:Marble 9", - recipe = { - {"default:clay", "building_blocks:Tar", "default:clay"}, - {"building_blocks:Tar","default:clay", "building_blocks:Tar"}, - {"default:clay", "building_blocks:Tar","default:clay"}, - } -}) - +minetest.register_node("building_blocks:Adobe", { + tiles = {"building_blocks_Adobe.png"}, + description = "Adobe", + is_ground_content = true, + groups = {crumbly=3}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("building_blocks:Roofing", { + tiles = {"building_blocks_Roofing.png"}, + is_ground_content = true, + description = "Roof block", + groups = {snappy=3}, +}) +minetest.register_craft({ + output = 'building_blocks:terrycloth_towel 2', + recipe = { + {"farming:string", "farming:string", "farming:string"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:Tarmac_spread 4', + recipe = { + {"building_blocks:Tar", "building_blocks:Tar"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:gravel_spread 4', + recipe = { + {"default:gravel", "default:gravel", "default:gravel"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:brobble_spread 4', + recipe = { + {"default:brick", "default:cobble", "default:brick"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:Fireplace 1', + recipe = { + {"default:steel_ingot", "building_blocks:sticks", "default:steel_ingot"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:Adobe 3', + recipe = { + {"default:sand"}, + {"default:clay"}, + {"group:stick"}, + } +}) + +minetest.register_craft({ + output = 'building_blocks:Roofing 10', + recipe = { + {"building_blocks:Adobe", "building_blocks:Adobe"}, + {"building_blocks:Adobe", "building_blocks:Adobe"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:BWtile 10', + recipe = { + {"building_blocks:Marble", "building_blocks:Tar"}, + {"building_blocks:Tar", "building_blocks:Marble"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:grate 1', + recipe = { + {"default:steel_ingot", "default:steel_ingot"}, + {"default:glass", "default:glass"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:woodglass 1', + recipe = { + {"default:wood"}, + {"default:glass"}, + } +}) +minetest.register_craft({ + output = 'building_blocks:hardwood 2', + recipe = { + {"default:wood", "default:junglewood"}, + {"default:junglewood", "default:wood"}, + } +}) + +minetest.register_craft({ + output = 'building_blocks:hardwood 2', + recipe = { + {"default:junglewood", "default:wood"}, + {"default:wood", "default:junglewood"}, + } +}) + +minetest.register_craft({ + output = 'building_blocks:sticks', + recipe = { + {'group:stick', 'group:stick'}, + {'group:stick', 'group:stick'}, + } +}) + +minetest.register_craft({ + output = 'building_blocks:fakegrass 2', + recipe = { + {'default:leaves'}, + {"default:dirt"}, + } +}) + +minetest.register_craft({ + output = 'building_blocks:tar_base 2', + recipe = { + {"default:coal_lump", "default:gravel"}, + {"default:gravel", "default:coal_lump"} + } +}) + +minetest.register_craft({ + output = 'building_blocks:tar_base 2', + recipe = { + {"default:gravel", "default:coal_lump"}, + {"default:coal_lump", "default:gravel"} + } +}) + +minetest.register_craft({ + type = "cooking", + output = "building_blocks:smoothglass", + recipe = "default:glass" +}) +minetest.register_node("building_blocks:smoothglass", { + drawtype = "glasslike", + description = "Streak Free Glass", + tiles = {"building_blocks_sglass.png"}, + inventory_image = minetest.inventorycube("building_blocks_sglass.png"), + paramtype = "light", + sunlight_propagates = true, + is_ground_content = true, + groups = {snappy=3,cracky=3,oddly_breakable_by_hand=3}, + sounds = default.node_sound_glass_defaults(), +}) +minetest.register_node("building_blocks:grate", { + drawtype = "glasslike", + description = "Grate", + tiles = {"building_blocks_grate.png"}, + inventory_image = minetest.inventorycube("building_blocks_grate.png"), + paramtype = "light", + sunlight_propagates = true, + is_ground_content = true, + groups = {cracky=1}, + sounds = default.node_sound_stone_defaults(), +}) + +minetest.register_node("building_blocks:Fireplace", { + description = "Fireplace", + tiles = { + "building_blocks_cast_iron.png", + "building_blocks_cast_iron.png", + "building_blocks_cast_iron.png", + "building_blocks_cast_iron_fireplace.png" + }, + paramtype = "light", + paramtype2 = "facedir", + light_source = LIGHT_MAX, + sunlight_propagates = true, + is_ground_content = true, + groups = {cracky=2}, +}) + +minetest.register_node("building_blocks:woodglass", { + drawtype = "glasslike", + description = "Wood Framed Glass", + tiles = {"building_blocks_wglass.png"}, + inventory_image = minetest.inventorycube("building_blocks_wglass.png"), + paramtype = "light", + sunlight_propagates = true, + is_ground_content = true, + groups = {snappy=3,cracky=3,oddly_breakable_by_hand=3}, + sounds = default.node_sound_glass_defaults(), +}) +minetest.register_node("building_blocks:terrycloth_towel", { + drawtype = "raillike", + description = "Terrycloth towel", + tiles = {"building_blocks_towel.png"}, + inventory_image = "building_blocks_towel_inv.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + sunlight_propagates = true, + is_ground_content = true, + groups = {crumbly=3}, +}) +minetest.register_node("building_blocks:Tarmac_spread", { + drawtype = "raillike", + description = "Tarmac Spread", + tiles = {"building_blocks_tar.png"}, + inventory_image = "building_blocks_tar_spread_inv.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + sunlight_propagates = true, + is_ground_content = true, + groups = {cracky=3}, +}) +minetest.register_node("building_blocks:BWtile", { + drawtype = "raillike", + description = "Chess board tiling", + tiles = {"building_blocks_BWtile.png"}, + inventory_image = "building_blocks_bwtile_inv.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + sunlight_propagates = true, + is_ground_content = true, + groups = {crumbly=3}, +}) +minetest.register_node("building_blocks:brobble_spread", { + drawtype = "raillike", + description = "Brobble Spread", + tiles = {"building_blocks_brobble.png"}, + inventory_image = "building_blocks_brobble_spread_inv.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + sunlight_propagates = true, + is_ground_content = true, + groups = {crumbly=3}, +}) +minetest.register_node("building_blocks:gravel_spread", { + drawtype = "raillike", + description = "Gravel Spread", + tiles = {"default_gravel.png"}, + inventory_image = "building_blocks_gravel_spread_inv.png", + paramtype = "light", + walkable = false, + selection_box = { + type = "fixed", + -- but how to specify the dimensions for curved and sideways rails? + fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2}, + }, + sunlight_propagates = true, + is_ground_content = true, + groups = {crumbly=2}, +}) +minetest.register_node("building_blocks:hardwood", { + tiles = {"building_blocks_hardwood.png"}, + is_ground_content = true, + description = "Hardwood", + groups = {choppy=1,flammable=1}, + sounds = default.node_sound_wood_defaults(), +}) + +if minetest.get_modpath("moreblocks") then + + stairsplus:register_all( + "building_blocks", + "marble", + "building_blocks:Marble", + { + description = "Marble", + tiles = {"building_blocks_marble.png"}, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + } + ) + stairsplus:register_all( + "building_blocks", + "hardwood", + "building_blocks:hardwood", + { + description = "Hardwood", + tiles = {"building_blocks_hardwood.png"}, + groups = {choppy=1,flammable=1}, + sounds = default.node_sound_wood_defaults(), + } + ) + stairsplus:register_all( + "building_blocks", + "fakegrass", + "building_blocks:fakegrass", + { + description = "Grass", + tiles = {"default_grass.png"}, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.4}, + }), + } + ) + stairsplus:register_all( + "building_blocks", + "tar", + "building_blocks:Tar", + { + description = "Tar", + tiles = {"building_blocks_tar.png"}, + groups = {crumbly=1}, + sounds = default.node_sound_stone_defaults(), + } + ) + stairsplus:register_all( + "building_blocks", + "grate", + "building_blocks:grate", + { + description = "Grate", + tiles = {"building_blocks_grate.png"}, + groups = {cracky=1}, + sounds = default.node_sound_stone_defaults(), + } + ) + +else + bb_stairs = {} + + -- Node will be called stairs:stair_ + function bb_stairs.register_stair(subname, recipeitem, groups, images, description) + minetest.register_node("building_blocks:stair_" .. subname, { + description = description, + drawtype = "nodebox", + tiles = images, + paramtype = "light", + paramtype2 = "facedir", + is_ground_content = true, + groups = groups, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + }) + + minetest.register_craft({ + output = 'building_blocks:stair_' .. subname .. ' 4', + recipe = { + {recipeitem, "", ""}, + {recipeitem, recipeitem, ""}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + + -- Flipped recipe for the silly minecrafters + minetest.register_craft({ + output = 'building_blocks:stair_' .. subname .. ' 4', + recipe = { + {"", "", recipeitem}, + {"", recipeitem, recipeitem}, + {recipeitem, recipeitem, recipeitem}, + }, + }) + end + + -- Node will be called stairs:slab_ + function bb_stairs.register_slab(subname, recipeitem, groups, images, description) + minetest.register_node("building_blocks:slab_" .. subname, { + description = description, + drawtype = "nodebox", + tiles = images, + paramtype = "light", + is_ground_content = true, + groups = groups, + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + }) + + minetest.register_craft({ + output = 'building_blocks:slab_' .. subname .. ' 3', + recipe = { + {recipeitem, recipeitem, recipeitem}, + }, + }) + end + + -- Nodes will be called stairs:{stair,slab}_ + function bb_stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab) + bb_stairs.register_stair(subname, recipeitem, groups, images, desc_stair) + bb_stairs.register_slab(subname, recipeitem, groups, images, desc_slab) + end + bb_stairs.register_stair_and_slab("marble","building_blocks:Marble", + {cracky=3}, + {"building_blocks_marble.png"}, + "Marble stair", + "Marble slab" + ) + bb_stairs.register_stair_and_slab("hardwood","building_blocks:hardwood", + {choppy=1,flammable=1}, + {"building_blocks_hardwood.png"}, + "Hardwood stair", + "Hardwood slab" + ) + bb_stairs.register_stair_and_slab("fakegrass","building_blocks:fakegrass", + {crumbly=3}, + {"default_grass.png"}, + "Grass stair", + "Grass slab" + ) + bb_stairs.register_stair_and_slab("tar","building_blocks:Tar", + {crumbly=1}, + {"building_blocks_tar.png"}, + "Tar stair", + "Tar slab" + ) + bb_stairs.register_stair_and_slab("grate","building_blocks:grate", + {cracky=1}, + {"building_blocks_grate.png"}, + "Grate Stair", + "Grate Slab" + ) +end + + +minetest.register_craft({ + type = "fuel", + recipe = "building_blocks:hardwood", + burntime = 28, +}) + +minetest.register_node("building_blocks:fakegrass", { + tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, + description = "Fake Grass", + is_ground_content = true, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults({ + footstep = {name="default_grass_footstep", gain=0.4}, + }), +}) + +minetest.register_craftitem("building_blocks:sticks", { + description = "Small bundle of sticks", + image = "building_blocks_sticks.png", + on_place_on_ground = minetest.craftitem_place_item, +}) + +minetest.register_craftitem("building_blocks:tar_base", { + description = "Tar base", + image = "building_blocks_tar_base.png", +}) + +--Tar +minetest.register_craft({ + output = 'building_blocks:knife 1', + recipe = { + {"building_blocks:Tar"}, + {"group:stick"}, + } +}) + +minetest.register_alias("tar", "building_blocks:Tar") +minetest.register_alias("fakegrass", "building_blocks:fakegrass") +minetest.register_alias("tar_knife", "building_blocks:knife") +minetest.register_alias("adobe", "building_blocks:Adobe") +minetest.register_alias("building_blocks_roofing", "building_blocks:Roofing") +minetest.register_alias("hardwood", "building_blocks:hardwood") +minetest.register_alias("sticks", "building_blocks:sticks") +minetest.register_alias("building_blocks:faggot", "building_blocks:sticks") +minetest.register_alias("marble", "building_blocks:Marble") + +minetest.register_node("building_blocks:Tar", { + description = "Tar", + tiles = {"building_blocks_tar.png"}, + is_ground_content = true, + groups = {crumbly=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("building_blocks:Marble", { + description = "Marble", + tiles = {"building_blocks_marble.png"}, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_craft({ + type = "fuel", + recipe = "building_blocks:sticks", + burntime = 5, +}) +minetest.register_craft({ + type = "fuel", + recipe = "building_blocks:Tar", + burntime = 40, +}) + +minetest.register_craft({ + type = "cooking", + output = "building_blocks:Tar", + recipe = "building_blocks:tar_base", +}) + +minetest.register_tool("building_blocks:knife", { + description = "Tar Knife", + inventory_image = "building_blocks_knife.png", + tool_capabilities = { + max_drop_level=0, + groupcaps={ + choppy={times={[2]=7.50, [3]=2.80}, maxwear=0.01, maxlevel=1}, + fleshy={times={[2]=5.50, [3]=2.80}, maxwear=0.01, maxlevel=1} + } + }, +}) + +minetest.add_to_creative_inventory('building_blocks:Tar 0') +minetest.add_to_creative_inventory('building_blocks:hardwood 0') +minetest.register_craft({ + output = "building_blocks:Marble 9", + recipe = { + {"default:clay", "building_blocks:Tar", "default:clay"}, + {"building_blocks:Tar","default:clay", "building_blocks:Tar"}, + {"default:clay", "building_blocks:Tar","default:clay"}, + } +}) + diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_Adobe.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_Adobe.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_BWtile.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_BWtile.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_Roofing.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_Roofing.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_brobble.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_brobble.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_brobble_spread_inv.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_brobble_spread_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_bwtile_inv.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_bwtile_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_cast_iron.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_cast_iron.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_cast_iron_fireplace.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_cast_iron_fireplace.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_grate.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_grate.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_grate2.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_grate2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_gravel_spread_inv.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_gravel_spread_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_hardwood.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_hardwood.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_knife.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_knife.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_marble.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_marble.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_sglass.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_sglass.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_sticks.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_sticks.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_base.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_base.png old mode 100755 new mode 100644 index 1825e98d..507199f4 Binary files a/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_base.png and b/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_base.png differ diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_spread_inv.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_tar_spread_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_towel.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_towel.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_towel_inv.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_towel_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/building_blocks/textures/building_blocks_wglass.png b/mods/homedecor_modpack/building_blocks/textures/building_blocks_wglass.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/chains/depends.txt b/mods/homedecor_modpack/chains/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/chains/init.lua b/mods/homedecor_modpack/chains/init.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/chains/textures/chains_chain.png b/mods/homedecor_modpack/chains/textures/chains_chain.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/chains/textures/chains_chain_brass.png b/mods/homedecor_modpack/chains/textures/chains_chain_brass.png old mode 100755 new mode 100644 index 75d19d19..d2d88aa6 Binary files a/mods/homedecor_modpack/chains/textures/chains_chain_brass.png and b/mods/homedecor_modpack/chains/textures/chains_chain_brass.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chain_top.png b/mods/homedecor_modpack/chains/textures/chains_chain_top.png old mode 100755 new mode 100644 index 9279f956..469cafc9 Binary files a/mods/homedecor_modpack/chains/textures/chains_chain_top.png and b/mods/homedecor_modpack/chains/textures/chains_chain_top.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chain_top_brass.png b/mods/homedecor_modpack/chains/textures/chains_chain_top_brass.png old mode 100755 new mode 100644 index 0becccfc..dbafa269 Binary files a/mods/homedecor_modpack/chains/textures/chains_chain_top_brass.png and b/mods/homedecor_modpack/chains/textures/chains_chain_top_brass.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chain_top_brass_inv.png b/mods/homedecor_modpack/chains/textures/chains_chain_top_brass_inv.png old mode 100755 new mode 100644 index 52f9e17f..69b555af Binary files a/mods/homedecor_modpack/chains/textures/chains_chain_top_brass_inv.png and b/mods/homedecor_modpack/chains/textures/chains_chain_top_brass_inv.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chain_top_inv.png b/mods/homedecor_modpack/chains/textures/chains_chain_top_inv.png old mode 100755 new mode 100644 index 5cd95379..4f03efff Binary files a/mods/homedecor_modpack/chains/textures/chains_chain_top_inv.png and b/mods/homedecor_modpack/chains/textures/chains_chain_top_inv.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chandelier.png b/mods/homedecor_modpack/chains/textures/chains_chandelier.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/chains/textures/chains_chandelier_brass.png b/mods/homedecor_modpack/chains/textures/chains_chandelier_brass.png old mode 100755 new mode 100644 index d57a7c30..f67d7255 Binary files a/mods/homedecor_modpack/chains/textures/chains_chandelier_brass.png and b/mods/homedecor_modpack/chains/textures/chains_chandelier_brass.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chandelier_brass_inv.png b/mods/homedecor_modpack/chains/textures/chains_chandelier_brass_inv.png old mode 100755 new mode 100644 index 4a835dd0..d5d693ad Binary files a/mods/homedecor_modpack/chains/textures/chains_chandelier_brass_inv.png and b/mods/homedecor_modpack/chains/textures/chains_chandelier_brass_inv.png differ diff --git a/mods/homedecor_modpack/chains/textures/chains_chandelier_inv.png b/mods/homedecor_modpack/chains/textures/chains_chandelier_inv.png old mode 100755 new mode 100644 index 99ba69ed..164d2fd0 Binary files a/mods/homedecor_modpack/chains/textures/chains_chandelier_inv.png and b/mods/homedecor_modpack/chains/textures/chains_chandelier_inv.png differ diff --git a/mods/homedecor_modpack/computer/CHANGES.txt b/mods/homedecor_modpack/computer/CHANGES.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/LICENSE.txt b/mods/homedecor_modpack/computer/LICENSE.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/README.txt b/mods/homedecor_modpack/computer/README.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/TODO.txt b/mods/homedecor_modpack/computer/TODO.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/computers.lua b/mods/homedecor_modpack/computer/computers.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/depends.txt b/mods/homedecor_modpack/computer/depends.txt old mode 100755 new mode 100644 index 4ad96d51..c48fe0d0 --- a/mods/homedecor_modpack/computer/depends.txt +++ b/mods/homedecor_modpack/computer/depends.txt @@ -1 +1,3 @@ default +intllib? + diff --git a/mods/homedecor_modpack/computer/init.lua b/mods/homedecor_modpack/computer/init.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/locale/es.txt b/mods/homedecor_modpack/computer/locale/es.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/miscitems.lua b/mods/homedecor_modpack/computer/miscitems.lua old mode 100755 new mode 100644 index 7ce63de5..15e66a93 --- a/mods/homedecor_modpack/computer/miscitems.lua +++ b/mods/homedecor_modpack/computer/miscitems.lua @@ -5,12 +5,11 @@ -- This file defines some items in order to not have to depend on other mods. -- Boilerplate to support localized strings if intllib mod is installed. -local S; -if (minetest.get_modpath("intllib")) then - dofile(minetest.get_modpath("intllib").."/intllib.lua"); - S = intllib.Getter(minetest.get_current_modname()); +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() else - S = function ( s ) return s; end + S = function(s) return s end end if (not minetest.get_modpath("homedecor")) then diff --git a/mods/homedecor_modpack/computer/recipes.lua b/mods/homedecor_modpack/computer/recipes.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_bk.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_bt.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_ft.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_lt.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_rt.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral128_tp.png b/mods/homedecor_modpack/computer/textures/computer_admiral128_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_bk.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_bt.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_ft.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_lt.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_rt.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_admiral64_tp.png b/mods/homedecor_modpack/computer/textures/computer_admiral64_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_back.png b/mods/homedecor_modpack/computer/textures/computer_babytower_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_bottom.png b/mods/homedecor_modpack/computer/textures/computer_babytower_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_front.png b/mods/homedecor_modpack/computer/textures/computer_babytower_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_left.png b/mods/homedecor_modpack/computer/textures/computer_babytower_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_right.png b/mods/homedecor_modpack/computer/textures/computer_babytower_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_babytower_top.png b/mods/homedecor_modpack/computer/textures/computer_babytower_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_computer_front_old.png b/mods/homedecor_modpack/computer/textures/computer_computer_front_old.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_computer_top_old.png b/mods/homedecor_modpack/computer/textures/computer_computer_top_old.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_b.png b/mods/homedecor_modpack/computer/textures/computer_monitor_b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_bt.png b/mods/homedecor_modpack/computer/textures/computer_monitor_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_btdl.png b/mods/homedecor_modpack/computer/textures/computer_monitor_btdl.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_bios.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_bios.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_desktop.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_desktop.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_dl.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_dl.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_loading.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_loading.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_login.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_login.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_off.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_f_on.png b/mods/homedecor_modpack/computer/textures/computer_monitor_f_on.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_l.png b/mods/homedecor_modpack/computer/textures/computer_monitor_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_r.png b/mods/homedecor_modpack/computer/textures/computer_monitor_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_t.png b/mods/homedecor_modpack/computer/textures/computer_monitor_t.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_t_off.png b/mods/homedecor_modpack/computer/textures/computer_monitor_t_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_monitor_tdl.png b/mods/homedecor_modpack/computer/textures/computer_monitor_tdl.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_piepad_inv.png b/mods/homedecor_modpack/computer/textures/computer_piepad_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_piepad_inv_off.png b/mods/homedecor_modpack/computer/textures/computer_piepad_inv_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_b.png b/mods/homedecor_modpack/computer/textures/computer_printer_b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_bt.png b/mods/homedecor_modpack/computer/textures/computer_printer_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_f.png b/mods/homedecor_modpack/computer/textures/computer_printer_f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_l.png b/mods/homedecor_modpack/computer/textures/computer_printer_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_r.png b/mods/homedecor_modpack/computer/textures/computer_printer_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_printer_t.png b/mods/homedecor_modpack/computer/textures/computer_printer_t.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_b.png b/mods/homedecor_modpack/computer/textures/computer_router_b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_bt.png b/mods/homedecor_modpack/computer/textures/computer_router_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_f.png b/mods/homedecor_modpack/computer/textures/computer_router_f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_f_animated.png b/mods/homedecor_modpack/computer/textures/computer_router_f_animated.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_l.png b/mods/homedecor_modpack/computer/textures/computer_router_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_r.png b/mods/homedecor_modpack/computer/textures/computer_router_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_router_t.png b/mods/homedecor_modpack/computer/textures/computer_router_t.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_bt.png b/mods/homedecor_modpack/computer/textures/computer_server_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_f_off.png b/mods/homedecor_modpack/computer/textures/computer_server_f_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_f_on.png b/mods/homedecor_modpack/computer/textures/computer_server_f_on.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_inv.png b/mods/homedecor_modpack/computer/textures/computer_server_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_l.png b/mods/homedecor_modpack/computer/textures/computer_server_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_r.png b/mods/homedecor_modpack/computer/textures/computer_server_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_server_t.png b/mods/homedecor_modpack/computer/textures/computer_server_t.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_bk.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_bt.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_ft.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_ft_off.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_ft_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_lt.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_rt.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_tp.png b/mods/homedecor_modpack/computer/textures/computer_shefriendSOO_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_bk.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_bt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_ft.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_ft_off.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_ft_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_lt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_rt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation2_tp.png b/mods/homedecor_modpack/computer/textures/computer_slaystation2_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_bk.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_bt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_ft.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_lt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_rt.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_tp.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_slaystation_tp_off.png b/mods/homedecor_modpack/computer/textures/computer_slaystation_tp_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_bk.png b/mods/homedecor_modpack/computer/textures/computer_specter_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_bt.png b/mods/homedecor_modpack/computer/textures/computer_specter_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_ft.png b/mods/homedecor_modpack/computer/textures/computer_specter_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_lt.png b/mods/homedecor_modpack/computer/textures/computer_specter_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_rt.png b/mods/homedecor_modpack/computer/textures/computer_specter_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_specter_tp.png b/mods/homedecor_modpack/computer/textures/computer_specter_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_back.png b/mods/homedecor_modpack/computer/textures/computer_spectre_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_bottom.png b/mods/homedecor_modpack/computer/textures/computer_spectre_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_front.png b/mods/homedecor_modpack/computer/textures/computer_spectre_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_left.png b/mods/homedecor_modpack/computer/textures/computer_spectre_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_right.png b/mods/homedecor_modpack/computer/textures/computer_spectre_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_spectre_top.png b/mods/homedecor_modpack/computer/textures/computer_spectre_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_b.png b/mods/homedecor_modpack/computer/textures/computer_tower_b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_bt.png b/mods/homedecor_modpack/computer/textures/computer_tower_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_f_off.png b/mods/homedecor_modpack/computer/textures/computer_tower_f_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_f_on.png b/mods/homedecor_modpack/computer/textures/computer_tower_f_on.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_l.png b/mods/homedecor_modpack/computer/textures/computer_tower_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_r.png b/mods/homedecor_modpack/computer/textures/computer_tower_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_tower_t.png b/mods/homedecor_modpack/computer/textures/computer_tower_t.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_bk.png b/mods/homedecor_modpack/computer/textures/computer_vanio_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_bk_off.png b/mods/homedecor_modpack/computer/textures/computer_vanio_bk_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_bt.png b/mods/homedecor_modpack/computer/textures/computer_vanio_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_ft.png b/mods/homedecor_modpack/computer/textures/computer_vanio_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_ft_off.png b/mods/homedecor_modpack/computer/textures/computer_vanio_ft_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_lt.png b/mods/homedecor_modpack/computer/textures/computer_vanio_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_lt_off.png b/mods/homedecor_modpack/computer/textures/computer_vanio_lt_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_rt.png b/mods/homedecor_modpack/computer/textures/computer_vanio_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_rt_off.png b/mods/homedecor_modpack/computer/textures/computer_vanio_rt_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_tp.png b/mods/homedecor_modpack/computer/textures/computer_vanio_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_vanio_tp_off.png b/mods/homedecor_modpack/computer/textures/computer_vanio_tp_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_bk.png b/mods/homedecor_modpack/computer/textures/computer_wee_bk.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_bt.png b/mods/homedecor_modpack/computer/textures/computer_wee_bt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_ft.png b/mods/homedecor_modpack/computer/textures/computer_wee_ft.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_ft_off.png b/mods/homedecor_modpack/computer/textures/computer_wee_ft_off.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_lt.png b/mods/homedecor_modpack/computer/textures/computer_wee_lt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_rt.png b/mods/homedecor_modpack/computer/textures/computer_wee_rt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/computer_wee_tp.png b/mods/homedecor_modpack/computer/textures/computer_wee_tp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/homedecor_plastic_base.png b/mods/homedecor_modpack/computer/textures/homedecor_plastic_base.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/homedecor_plastic_base_inv.png b/mods/homedecor_modpack/computer/textures/homedecor_plastic_base_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/homedecor_plastic_sheeting.png b/mods/homedecor_modpack/computer/textures/homedecor_plastic_sheeting.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_back.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_back.png old mode 100755 new mode 100644 index 711649a2..b94088d0 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_back.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_back.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_bottom.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_bottom.png old mode 100755 new mode 100644 index 711649a2..b94088d0 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_bottom.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_bottom.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_front.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_front.png old mode 100755 new mode 100644 index 6bbbdd1b..d164fd82 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_front.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_front.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_left.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_left.png old mode 100755 new mode 100644 index 711649a2..b94088d0 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_left.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_left.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_right.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_right.png old mode 100755 new mode 100644 index 711649a2..b94088d0 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_right.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_right.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_top.png b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_top.png old mode 100755 new mode 100644 index f7ff21b1..d82eea87 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_babytower_top.png and b/mods/homedecor_modpack/computer/textures/unused/computer_babytower_top.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_computer_front_old.png b/mods/homedecor_modpack/computer/textures/unused/computer_computer_front_old.png old mode 100755 new mode 100644 index 6cff1c17..5f591a64 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_computer_front_old.png and b/mods/homedecor_modpack/computer/textures/unused/computer_computer_front_old.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_computer_top_old.png b/mods/homedecor_modpack/computer/textures/unused/computer_computer_top_old.png old mode 100755 new mode 100644 index 422ad94f..625479c8 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_computer_top_old.png and b/mods/homedecor_modpack/computer/textures/unused/computer_computer_top_old.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_shefriendSOO_ (copia).png b/mods/homedecor_modpack/computer/textures/unused/computer_shefriendSOO_ (copia).png old mode 100755 new mode 100644 index 711649a2..b94088d0 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_shefriendSOO_ (copia).png and b/mods/homedecor_modpack/computer/textures/unused/computer_shefriendSOO_ (copia).png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_back.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_back.png old mode 100755 new mode 100644 index 83263db8..d5abffc9 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_back.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_back.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_bottom.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_bottom.png old mode 100755 new mode 100644 index 439e9d4a..701a191e Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_bottom.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_bottom.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_front.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_front.png old mode 100755 new mode 100644 index 82193601..6ad7f280 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_front.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_front.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_left.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_left.png old mode 100755 new mode 100644 index 69e4e08b..b7d0ac34 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_left.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_left.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_right.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_right.png old mode 100755 new mode 100644 index 4030e9be..19f98157 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_right.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_right.png differ diff --git a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_top.png b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_top.png old mode 100755 new mode 100644 index 96220a06..058f6102 Binary files a/mods/homedecor_modpack/computer/textures/unused/computer_spectre_top.png and b/mods/homedecor_modpack/computer/textures/unused/computer_spectre_top.png differ diff --git a/mods/homedecor_modpack/fake_fire/LICENSE.txt b/mods/homedecor_modpack/fake_fire/LICENSE.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/README.txt b/mods/homedecor_modpack/fake_fire/README.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/changelog.txt b/mods/homedecor_modpack/fake_fire/changelog.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/depends.txt b/mods/homedecor_modpack/fake_fire/depends.txt old mode 100755 new mode 100644 index 4ad96d51..562cf632 --- a/mods/homedecor_modpack/fake_fire/depends.txt +++ b/mods/homedecor_modpack/fake_fire/depends.txt @@ -1 +1 @@ -default +default diff --git a/mods/homedecor_modpack/fake_fire/init.lua b/mods/homedecor_modpack/fake_fire/init.lua old mode 100755 new mode 100644 index db264dae..207e06b1 --- a/mods/homedecor_modpack/fake_fire/init.lua +++ b/mods/homedecor_modpack/fake_fire/init.lua @@ -1,37 +1,37 @@ ---[[ - -The 'Fake-Fire' mod was originally created by Semmett9. - -URL to the 'Fake-Fire' thread on Minetest.net: -http://forum.minetest.net/viewtopic.php?id=6145 - -I've customized it a bit. Please see the changelog.txt file for more details. - -~ LazyJ, 2014_03_15 - ---]] - -dofile(minetest.get_modpath("fake_fire").."/modfiles/nodes.lua") -dofile(minetest.get_modpath("fake_fire").."/modfiles/crafts.lua") -dofile(minetest.get_modpath("fake_fire").."/modfiles/abms.lua") - - - ---[[ - - The lines below, at the end, are from the original author, Semmett9. - - Thanks for a nice mod, Semmett9. ;) - - ~ LazyJ, 2014_03_14 - ---]] - - - --- Thanks- - --- Many thanks for addi for his help in coding. -- - --- Many thanks for the players on the King Arthur's land server for giving -- --- me support, ideas and allowing me to add the mod to the server itself. -- +--[[ + +The 'Fake-Fire' mod was originally created by Semmett9. + +URL to the 'Fake-Fire' thread on Minetest.net: +http://forum.minetest.net/viewtopic.php?id=6145 + +I've customized it a bit. Please see the changelog.txt file for more details. + +~ LazyJ, 2014_03_15 + +--]] + +dofile(minetest.get_modpath("fake_fire").."/modfiles/nodes.lua") +dofile(minetest.get_modpath("fake_fire").."/modfiles/crafts.lua") +dofile(minetest.get_modpath("fake_fire").."/modfiles/abms.lua") + + + +--[[ + + The lines below, at the end, are from the original author, Semmett9. + + Thanks for a nice mod, Semmett9. ;) + + ~ LazyJ, 2014_03_14 + +--]] + + + +-- Thanks- + +-- Many thanks for addi for his help in coding. -- + +-- Many thanks for the players on the King Arthur's land server for giving -- +-- me support, ideas and allowing me to add the mod to the server itself. -- diff --git a/mods/homedecor_modpack/fake_fire/modfiles/abms.lua b/mods/homedecor_modpack/fake_fire/modfiles/abms.lua old mode 100755 new mode 100644 index c7cb1175..7c578b8b --- a/mods/homedecor_modpack/fake_fire/modfiles/abms.lua +++ b/mods/homedecor_modpack/fake_fire/modfiles/abms.lua @@ -22,13 +22,13 @@ minetest.register_abm({ interval = 1, chance = 1, action = function(pos, node) - if minetest.find_node_near(pos, 1, {"default:water_source", + if minetest.env:find_node_near(pos, 1, {"default:water_source", "default:water_flowing","default:lava_source", "default:lava_flowing"}) then minetest.sound_play("fire_extinguish", {gain = 1.0, max_hear_distance = 20,}) node.name = "air" - minetest.set_node(pos, node) + minetest.env:set_node(pos, node) end end }) @@ -62,22 +62,22 @@ minetest.register_abm({ minetest.get_node({x=pos.x, y=pos.y+2.0, z=pos.z}).name == "air" then local image_number = math.random(4) - minetest.add_particlespawner( - 8, --particles amount - 1, --time - {x=pos.x-0.25, y=pos.y+0.4, z=pos.z-0.25}, --min. smoke position - {x=pos.x+0.25, y=pos.y+8, z=pos.z+0.25}, --max. smoke position - {x=-0.2, y=0.3, z=-0.2}, --min. particle velocity - {x=0.2, y=1, z=0.2}, --max. particle velocity - {x=0,y=0,z=0}, --min. particle acceleration - {x=0,y=0,z=0}, --max. particle acceleration - 0.5, --min. time particle expiration - 3, --max. time particle expiration - 2, --min. particle size - 10, --max. particle size - false, --collision detection - "smoke_particle_"..image_number..".png" --textures - ) + minetest.add_particlespawner({ + amount = 8, + time = 1, + minpos = {x=pos.x-0.25, y=pos.y+0.4, z=pos.z-0.25}, + maxpos = {x=pos.x+0.25, y=pos.y+8, z=pos.z+0.25}, + minvel = {x=-0.2, y=0.3, z=-0.2}, + maxvel = {x=0.2, y=1, z=0.2}, + minacc = {x=0,y=0,z=0}, + maxacc = {x=0,y=0,z=0}, + minexptime = 0.5, + maxexptime = 3, + minsize = 2, + maxsize = 10, + collisiondetection = false, + texture = "smoke_particle_"..image_number..".png", + }) end end }) diff --git a/mods/homedecor_modpack/fake_fire/modfiles/crafts.lua b/mods/homedecor_modpack/fake_fire/modfiles/crafts.lua old mode 100755 new mode 100644 index fed46564..94848070 --- a/mods/homedecor_modpack/fake_fire/modfiles/crafts.lua +++ b/mods/homedecor_modpack/fake_fire/modfiles/crafts.lua @@ -15,9 +15,9 @@ minetest.register_craftitem("fake_fire:old_flint_and_steel", { stack_max = 1, liquids_pointable = false, on_use = function(itemstack, user, pointed_thing) - n = minetest.get_node(pointed_thing) + n = minetest.env:get_node(pointed_thing) if pointed_thing.type == "node" then - minetest.add_node(pointed_thing.above, + minetest.env:add_node(pointed_thing.above, {name="fake_fire:fake_fire"}) minetest.sound_play("", {gain = 1.0, max_hear_distance = 20,}) diff --git a/mods/homedecor_modpack/fake_fire/modfiles/nodes.lua b/mods/homedecor_modpack/fake_fire/modfiles/nodes.lua old mode 100755 new mode 100644 index 315e0279..830dde48 --- a/mods/homedecor_modpack/fake_fire/modfiles/nodes.lua +++ b/mods/homedecor_modpack/fake_fire/modfiles/nodes.lua @@ -1,3 +1,5 @@ +local cp = nil + -- FLAME TYPES -- SMOKEY FIRE (TRIGGERS SMOKE ABM) diff --git a/mods/homedecor_modpack/fake_fire/sounds/fire_extinguish.ogg b/mods/homedecor_modpack/fake_fire/sounds/fire_extinguish.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/sounds/fire_ignite.ogg b/mods/homedecor_modpack/fake_fire/sounds/fire_ignite.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/sounds/fire_small.ogg b/mods/homedecor_modpack/fake_fire/sounds/fire_small.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/chimney_top_sandstone.png b/mods/homedecor_modpack/fake_fire/textures/chimney_top_sandstone.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/chimney_top_sandstone.xcf b/mods/homedecor_modpack/fake_fire/textures/chimney_top_sandstone.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/chimney_top_stone.png b/mods/homedecor_modpack/fake_fire/textures/chimney_top_stone.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/chimney_top_stone.xcf b/mods/homedecor_modpack/fake_fire/textures/chimney_top_stone.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/embers_animated.png b/mods/homedecor_modpack/fake_fire/textures/embers_animated.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/embers_animated.xcf b/mods/homedecor_modpack/fake_fire/textures/embers_animated.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/fake_fire.png b/mods/homedecor_modpack/fake_fire/textures/fake_fire.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/fake_fire_animated.png b/mods/homedecor_modpack/fake_fire/textures/fake_fire_animated.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/fake_fire_animated_old.png b/mods/homedecor_modpack/fake_fire/textures/fake_fire_animated_old.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/fake_fire_embers.png b/mods/homedecor_modpack/fake_fire/textures/fake_fire_embers.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/fake_fire_embers.xcf b/mods/homedecor_modpack/fake_fire/textures/fake_fire_embers.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/flint.png b/mods/homedecor_modpack/fake_fire/textures/flint.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/flint_and_steel.png b/mods/homedecor_modpack/fake_fire/textures/flint_and_steel.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/ice_fire.png b/mods/homedecor_modpack/fake_fire/textures/ice_fire.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/ice_fire.xcf b/mods/homedecor_modpack/fake_fire/textures/ice_fire.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/ice_fire_animated.png b/mods/homedecor_modpack/fake_fire/textures/ice_fire_animated.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/ice_fire_animated.xcf b/mods/homedecor_modpack/fake_fire/textures/ice_fire_animated.xcf old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/smoke_particle_1.png b/mods/homedecor_modpack/fake_fire/textures/smoke_particle_1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/smoke_particle_2.png b/mods/homedecor_modpack/fake_fire/textures/smoke_particle_2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/smoke_particle_3.png b/mods/homedecor_modpack/fake_fire/textures/smoke_particle_3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/fake_fire/textures/smoke_particle_4.png b/mods/homedecor_modpack/fake_fire/textures/smoke_particle_4.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/LICENSE b/mods/homedecor_modpack/homedecor/LICENSE old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/changelog.txt b/mods/homedecor_modpack/homedecor/changelog.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/climate-control.lua b/mods/homedecor_modpack/homedecor/climate-control.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/clocks.lua b/mods/homedecor_modpack/homedecor/clocks.lua old mode 100755 new mode 100644 index 65fcf34a..bf90fba4 --- a/mods/homedecor_modpack/homedecor/clocks.lua +++ b/mods/homedecor_modpack/homedecor/clocks.lua @@ -1,14 +1,8 @@ minetest.register_node("homedecor:analog_clock_plastic", { description = "Analog clock (plastic)", - drawtype = "nodebox", - tiles = { - "homedecor_analog_clock_plastic_edges.png", - "homedecor_analog_clock_plastic_edges.png", - "homedecor_analog_clock_plastic_edges.png", - "homedecor_analog_clock_plastic_edges.png", - "homedecor_analog_clock_plastic_back.png", - "homedecor_analog_clock_plastic_front.png" - }, + drawtype = "mesh", + mesh = "homedecor_analog_clock.obj", + tiles = { "homedecor_analog_clock_plastic.png" }, inventory_image = "homedecor_analog_clock_plastic_inv.png", paramtype = "light", paramtype2 = "facedir", @@ -31,15 +25,9 @@ minetest.register_node("homedecor:analog_clock_plastic", { minetest.register_node("homedecor:analog_clock_wood", { description = "Analog clock (wood)", - drawtype = "nodebox", - tiles = { - "homedecor_analog_clock_wood_edges.png", - "homedecor_analog_clock_wood_edges.png", - "homedecor_analog_clock_wood_edges.png", - "homedecor_analog_clock_wood_edges.png", - "homedecor_analog_clock_wood_back.png", - "homedecor_analog_clock_wood_front.png" - }, + drawtype = "mesh", + mesh = "homedecor_analog_clock.obj", + tiles = { "homedecor_analog_clock_wood.png" }, inventory_image = "homedecor_analog_clock_wood_inv.png", paramtype = "light", paramtype2 = "facedir", diff --git a/mods/homedecor_modpack/homedecor/cobweb.lua b/mods/homedecor_modpack/homedecor/cobweb.lua old mode 100755 new mode 100644 index cdeab8d6..01cdb88b --- a/mods/homedecor_modpack/homedecor/cobweb.lua +++ b/mods/homedecor_modpack/homedecor/cobweb.lua @@ -7,14 +7,20 @@ minetest.register_node("homedecor:cobweb_corner", { paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, + liquid_viscosity = 8, + liquidtype = "source", + liquid_alternative_flowing = "homedecor:cobweb_corner", + liquid_alternative_source = "homedecor:cobweb_corner", + liquid_renewable = false, + liquid_range = 0, walkable = false, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5} }, visual_scale = 1.4, - groups = { snappy = 3 }, - after_place_node = function(pos, placer, itemstack, pointed_thing) + groups = { snappy = 3, liquid=3 }, + after_place_node = function(pos, placer, itemstack, pointed_thing) homedecor.rotate_cobweb(pos) end }) @@ -27,6 +33,12 @@ minetest.register_node("homedecor:cobweb_centered", { paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, + liquid_viscosity = 8, + liquidtype = "source", + liquid_alternative_flowing = "homedecor:cobweb_centered", + liquid_alternative_source = "homedecor:cobweb_centered", + liquid_renewable = false, + liquid_range = 0, walkable = false, selection_box = { type = "fixed", @@ -36,7 +48,7 @@ minetest.register_node("homedecor:cobweb_centered", { type = "fixed", fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0 } }, - groups = { snappy = 3, not_in_creative_inventory = 1 }, + groups = { snappy = 3, liquid=3, not_in_creative_inventory = 1 }, drop = "homedecor:cobweb_corner" }) @@ -48,6 +60,12 @@ minetest.register_node("homedecor:cobweb_flat", { paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, + liquid_viscosity = 8, + liquidtype = "source", + liquid_alternative_flowing = "homedecor:cobweb_flat", + liquid_alternative_source = "homedecor:cobweb_flat", + liquid_renewable = false, + liquid_range = 0, walkable = false, selection_box = { type = "fixed", @@ -57,7 +75,7 @@ minetest.register_node("homedecor:cobweb_flat", { type = "fixed", fixed = { -0.5, -0.5, 0.495, 0.5, 0.5, 0.495 } }, - groups = { snappy = 3, not_in_creative_inventory = 1 }, + groups = { snappy = 3, liquid=3, not_in_creative_inventory = 1 }, drop = "homedecor:cobweb_corner" }) @@ -69,13 +87,19 @@ minetest.register_node("homedecor:cobweb_plantlike", { paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, + liquid_viscosity = 8, + liquidtype = "source", + liquid_alternative_flowing = "homedecor:cobweb_plantlike", + liquid_alternative_source = "homedecor:cobweb_plantlike", + liquid_renewable = false, + liquid_range = 0, walkable = false, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5} }, visual_scale = 1.189, - groups = { snappy = 3, not_in_creative_inventory = 1 }, + groups = { snappy = 3, liquid=3, not_in_creative_inventory = 1 }, drop = "homedecor:cobweb_corner" }) diff --git a/mods/homedecor_modpack/homedecor/copyright.txt b/mods/homedecor_modpack/homedecor/copyright.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/crafts.lua b/mods/homedecor_modpack/homedecor/crafts.lua old mode 100755 new mode 100644 index 0af0f296..84f56778 --- a/mods/homedecor_modpack/homedecor/crafts.lua +++ b/mods/homedecor_modpack/homedecor/crafts.lua @@ -1278,6 +1278,17 @@ minetest.register_craft({ } }) +-- Wrought-iron wall latern + +minetest.register_craft({ + output = "homedecor:wall_lantern 4", + recipe = { + { "default:iron_lump", "default:iron_lump", "default:iron_lump" }, + { "default:iron_lump", "default:torch", "default:iron_lump" }, + { "", "default:iron_lump", "" } + } +}) + -- wood-lattice lamps minetest.register_craft( { @@ -1831,6 +1842,28 @@ minetest.register_craft( { }, }) +-- woodglass door + +minetest.register_craft( { + output = "homedecor:door_woodglass_bottom_left", + recipe = { + { "default:wood", "default:glass", "" }, + { "default:wood", "default:glass", "technic:brass_ingot" }, + { "default:wood", "default:wood", "" }, + }, +}) + +-- woodglass door type 2 + +minetest.register_craft( { + output = "homedecor:door_woodglass2_bottom_left", + recipe = { + { "default:glass", "default:glass", "" }, + { "default:wood", "default:wood", "default:iron_lump" }, + { "default:wood", "default:wood", "" }, + }, +}) + -- washer and dryer minetest.register_craft( { @@ -2868,3 +2901,57 @@ minetest.register_craft({ }, }) +minetest.register_craft({ + output = "homedecor:calendar", + recipe = { + { "","dye:red","" }, + { "","dye:black","" }, + { "","default:paper","" } + }, +}) + +minetest.register_craft({ + type = "shapeless", + output = "homedecor:4_bottles_brown", + recipe = { + "homedecor:bottle_brown", + "homedecor:bottle_brown", + "homedecor:bottle_brown", + "homedecor:bottle_brown" + }, +}) + +minetest.register_craft({ + type = "shapeless", + output = "homedecor:4_bottles_green", + recipe = { + "homedecor:bottle_green", + "homedecor:bottle_green", + "homedecor:bottle_green", + "homedecor:bottle_green" + }, +}) + +minetest.register_craft({ + type = "shapeless", + output = "homedecor:4_bottles_multi", + recipe = { + "homedecor:bottle_brown", + "homedecor:bottle_brown", + "homedecor:bottle_green", + "homedecor:bottle_green", + }, +}) + +minetest.register_craft({ + output = "homedecor:wine_rack", + recipe = { + { "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" }, + { "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" }, + { "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" }, + }, +}) + +if (minetest.get_modpath("technic") and minetest.get_modpath("dye") and minetest.get_modpath("bees")) then + technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"homedecor:oil_extract 2","dye:yellow 1"} }) +end diff --git a/mods/homedecor_modpack/homedecor/depends.txt b/mods/homedecor_modpack/homedecor/depends.txt old mode 100755 new mode 100644 index 9dcc69f0..4e03f52a --- a/mods/homedecor_modpack/homedecor/depends.txt +++ b/mods/homedecor_modpack/homedecor/depends.txt @@ -1,5 +1,8 @@ default -signs_lib -building_blocks +building_blocks? +signs_lib? moreblocks? - +technic? +dye? +bees? +intllib? diff --git a/mods/homedecor_modpack/homedecor/door_models.lua b/mods/homedecor_modpack/homedecor/door_models.lua old mode 100755 new mode 100644 index 32dce9c3..5315df09 --- a/mods/homedecor_modpack/homedecor/door_models.lua +++ b/mods/homedecor_modpack/homedecor/door_models.lua @@ -361,5 +361,20 @@ homedecor.door_models = { {{ -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 }} }, +--------- + + { + "woodglass2", + S("Woodglass door type2"), + + {{ -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 }}, + + {{ -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 }}, + + {{ -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 }}, + + {{ -8/16, -8/16, 6/16, 8/16, 8/16, 8/16 }} + }, + } diff --git a/mods/homedecor_modpack/homedecor/doors_and_gates.lua b/mods/homedecor_modpack/homedecor/doors_and_gates.lua old mode 100755 new mode 100644 index 4de2164e..789a9c34 --- a/mods/homedecor_modpack/homedecor/doors_and_gates.lua +++ b/mods/homedecor_modpack/homedecor/doors_and_gates.lua @@ -157,7 +157,7 @@ for i in ipairs(sides) do local nodeboxes_top = homedecor.door_models[j][5] local nodeboxes_bottom = homedecor.door_models[j][6] local texalpha = false - if doorname == "exterior_fancy" then + if doorname == "exterior_fancy" or "woodglass" or "woodglass2" then texalpha = true end @@ -237,8 +237,8 @@ for i in ipairs(sides) do description = doordesc.." "..S("(%s-opening)"):format(side), drawtype = "nodebox", tiles = tiles_lower, - inventory_image = "homedecor_door_"..doorname.."_"..side.."_inv.png", - wield_image = "homedecor_door_"..doorname.."_"..side.."_inv.png", + inventory_image = "homedecor_door_"..doorname.."_left_inv.png", + wield_image = "homedecor_door_"..doorname.."_left_inv.png", paramtype = "light", paramtype2 = "facedir", groups = dgroups, @@ -579,14 +579,26 @@ minetest.register_node("homedecor:japanese_wall_top", { description = "Japanese wall (top)", drawtype = "nodebox", paramtype = "light", - paramtype2 = "facedir", - use_texture_alpha = true, - groups = {snappy=3}, + paramtype2 = "facedir", + groups = {snappy=3}, node_box = { type = "fixed", fixed = { - {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox1 + {-0.5, -0.5, 0.03125, 0.5, 0.5, 0.03125}, -- NodeBox1 + {-0.5, -0.5, 0, -0.469, 0.5, 0.0625}, -- NodeBox2 + {0.469, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox3 + {-0.5, -0.5, 0, 0.5, -0.46875, 0.0625}, -- NodeBox4 + {-0.5, 0.219, 0, 0.5, 0.5, 0.0625}, -- NodeBox5 + {-0.031, -0.5, 0, 0.031, 0.5, 0.0625}, -- NodeBox6 + {-0.5, -0.031, 0, 0.5, 0.03125, 0.0625}, -- NodeBox7 + {-0.281, -0.5, 0, -0.219, 0.5, 0.0625}, -- NodeBox8 + {0.219, -0.5, 0, 0.281, 0.5, 0.0625}, -- NodeBox9 + {-0.5, -0.281, 0, 0.5, -0.21875, 0.0625}, -- NodeBox10 } + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, } }) @@ -602,14 +614,27 @@ minetest.register_node("homedecor:japanese_wall_middle", { description = "Japanese wall", drawtype = "nodebox", paramtype = "light", - paramtype2 = "facedir", - use_texture_alpha = true, - groups = {snappy=3}, + paramtype2 = "facedir", + groups = {snappy=3}, node_box = { type = "fixed", fixed = { - {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox1 + {-0.5, -0.5, 0.03125, 0.5, 0.5, 0.03125}, -- NodeBox1 + {-0.5, -0.5, 0, -0.469, 0.5, 0.0625}, -- NodeBox2 + {0.469, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox3 + {-0.5, -0.5, 0, 0.5, -0.46875, 0.0625}, -- NodeBox4 + {-0.5, 0.469, 0, 0.5, 0.5, 0.0625}, -- NodeBox5 + {-0.031, -0.5, 0, 0.031, 0.5, 0.0625}, -- NodeBox6 + {-0.5, -0.031, 0, 0.5, 0.03125, 0.0625}, -- NodeBox7 + {-0.281, -0.5, 0, -0.219, 0.5, 0.0625}, -- NodeBox8 + {0.219, -0.5, 0, 0.281, 0.5, 0.0625}, -- NodeBox9 + {-0.5, -0.281, 0, 0.5, -0.21875, 0.0625}, -- NodeBox10 + {-0.5, 0.219, 0, 0.5, 0.28125, 0.0625}, -- NodeBox11 } + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, } }) @@ -625,14 +650,26 @@ minetest.register_node("homedecor:japanese_wall_bottom", { description = "Japanese wall (bottom)", drawtype = "nodebox", paramtype = "light", - paramtype2 = "facedir", - use_texture_alpha = true, - groups = {snappy=3}, + paramtype2 = "facedir", + groups = {snappy=3}, node_box = { type = "fixed", fixed = { - {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox1 + {-0.5, -0.5, 0.03125, 0.5, 0.5, 0.03125}, -- NodeBox1 + {-0.5, -0.5, 0, -0.469, 0.5, 0.0625}, -- NodeBox2 + {0.469, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox3 + {-0.5, -0.5, 0, 0.5, -0.21875, 0.0625}, -- NodeBox4 + {-0.5, 0.469, 0, 0.5, 0.5, 0.0625}, -- NodeBox5 + {-0.031, -0.5, 0, 0.031, 0.5, 0.0625}, -- NodeBox6 + {-0.5, -0.031, 0, 0.5, 0.03125, 0.0625}, -- NodeBox7 + {-0.281, -0.5, 0, -0.219, 0.5, 0.0625}, -- NodeBox8 + {0.219, -0.5, 0, 0.281, 0.5, 0.0625}, -- NodeBox9 + {-0.5, 0.219, 0, 0.5, 0.28125, 0.0625}, -- NodeBox11 } + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, } }) @@ -648,7 +685,7 @@ minetest.register_node("homedecor:tatami_mat", { description = "Japanese tatami", drawtype = "nodebox", paramtype = "light", - groups = {snappy=3}, + groups = {snappy=3}, node_box = { type = "fixed", fixed = { @@ -668,14 +705,21 @@ minetest.register_node("homedecor:jpn_door_bottom", { "homedecor_japanese_door_bottom.png" }, drawtype = "nodebox", - use_texture_alpha = true, paramtype = "light", paramtype2 = "facedir", groups = { snappy = 3 }, node_box = { type = "fixed", fixed = { - {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox1 + {-0.5, -0.5, 0.03125, 0.5, 0.5, 0.03125}, -- NodeBox1 + {-0.5, -0.5, 0, -0.44, 0.5, 0.0625}, -- NodeBox2 + {0.44, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox3 + {-0.5, -0.5, 0, 0.5, -0.4065, 0.0625}, -- NodeBox4 + {-0.5, 0.469, 0, 0.5, 0.5, 0.0625}, -- NodeBox5 + {-0.5, 0.1565, 0, 0.5, 0.21875, 0.0625}, -- NodeBox6 + {-0.5, -0.185, 0, 0.5, -0.125, 0.0625}, -- NodeBox7 + {-0.2185, -0.5, 0, -0.1565, 0.5, 0.0625}, -- NodeBox8 + {0.1565, -0.5, 0, 0.2185, 0.5, 0.0625}, -- NodeBox9 } }, selection_box = { @@ -719,14 +763,21 @@ minetest.register_node("homedecor:jpn_door_top", { "homedecor_japanese_door_top.png" }, drawtype = "nodebox", - use_texture_alpha = true, paramtype = "light", paramtype2 = "facedir", groups = { snappy = 3, not_in_creative_inventory = 1 }, node_box = { type = "fixed", fixed = { - {-0.5, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox1 + {-0.5, -0.5, 0.03125, 0.5, 0.5, 0.03125}, -- NodeBox1 + {-0.5, -0.5, 0, -0.44, 0.5, 0.0625}, -- NodeBox2 + {0.44, -0.5, 0, 0.5, 0.5, 0.0625}, -- NodeBox3 + {-0.5, -0.5, 0, 0.5, -0.469, 0.0625}, -- NodeBox4 + {-0.5, 0.4065, 0, 0.5, 0.5, 0.0625}, -- NodeBox5 + {-0.5, 0.1255, 0, 0.5, 0.1875, 0.0625}, -- NodeBox6 + {-0.5, -0.2185, 0, 0.5, -0.1565, 0.0625}, -- NodeBox7 + {-0.2185, -0.5, 0, -0.1565, 0.5, 0.0625}, -- NodeBox8 + {0.1565, -0.5, 0, 0.2185, 0.5, 0.0625}, -- NodeBox9 } }, selection_box = { @@ -744,14 +795,21 @@ minetest.register_node("homedecor:jpn_door_bottom_open", { "homedecor_japanese_door_bottom.png" }, drawtype = "nodebox", - use_texture_alpha = true, paramtype = "light", paramtype2 = "facedir", groups = { snappy = 3, not_in_creative_inventory = 1 }, node_box = { type = "fixed", fixed = { - {-1.5, -0.5, -0.0625, -0.5, 0.5, 0}, -- NodeBox1 + {-1.5, -0.5, -0.03125, -0.5, 0.5, -0.03125}, -- NodeBox1 + {-1.5, -0.5, -0.0625, -1.44, 0.5, 0}, -- NodeBox2 + {-0.5625, -0.5, -0.0625, -0.5, 0.5, 0}, -- NodeBox3 + {-1.5, -0.5, -0.0625, -0.5, -0.40625, 0}, -- NodeBox4 + {-1.5, 0.469, -0.0625, -0.5, 0.5, 0}, -- NodeBox5 + {-1.5, 0.1565, -0.0625, -0.5, 0.21875, 0}, -- NodeBox6 + {-1.5, -0.1865, -0.0625, -0.5, -0.125, 0}, -- NodeBox7 + {-1.21875, -0.5, -0.0625, -1.1565, 0.5, 0}, -- NodeBox8 + {-0.84375, -0.5, -0.0625, -0.7815, 0.5, 0}, -- NodeBox9 } }, selection_box = { @@ -781,14 +839,21 @@ minetest.register_node("homedecor:jpn_door_top_open", { "homedecor_japanese_door_top.png" }, drawtype = "nodebox", - use_texture_alpha = true, paramtype = "light", paramtype2 = "facedir", groups = { snappy = 3, not_in_creative_inventory = 1 }, node_box = { type = "fixed", fixed = { - {-1.5, -0.5, -0.0625, -0.5, 0.5, 0}, -- NodeBox1 + {-1.5, -0.5, -0.03125, -0.5, 0.5, -0.03125}, -- NodeBox1 + {-1.5, -0.5, -0.0625, -1.44, 0.5, 0}, -- NodeBox2 + {-0.5625, -0.5, -0.0625, -0.5, 0.5, 0}, -- NodeBox3 + {-1.5, -0.5, -0.0625, -0.5, -0.469, 0}, -- NodeBox4 + {-1.5, 0.4065, -0.0625, -0.5, 0.5, 0}, -- NodeBox5 + {-1.5, 0.1253, -0.0625, -0.5, 0.1875, 0}, -- NodeBox6 + {-1.5, -0.2185, -0.0625, -0.5, -0.15625, 0}, -- NodeBox7 + {-1.21875, -0.5, -0.0625, -1.1565, 0.5, 0}, -- NodeBox8 + {-0.84375, -0.5, -0.0625, -0.7815, 0.5, 0}, -- NodeBox9 } }, selection_box = { diff --git a/mods/homedecor_modpack/homedecor/electronics.lua b/mods/homedecor_modpack/homedecor/electronics.lua old mode 100755 new mode 100644 index 6be8538a..cbd62665 --- a/mods/homedecor_modpack/homedecor/electronics.lua +++ b/mods/homedecor_modpack/homedecor/electronics.lua @@ -50,7 +50,7 @@ minetest.register_node('homedecor:stereo', { description = S("Stereo Receiver"), tiles = { 'homedecor_stereo_top.png', 'homedecor_stereo_bottom.png', - 'homedecor_stereo_right.png', + 'homedecor_stereo_left.png^[transformFX', 'homedecor_stereo_left.png', 'homedecor_stereo_back.png', 'homedecor_stereo_front.png'}, @@ -84,7 +84,7 @@ minetest.register_node('homedecor:television', { description = S("Small CRT Television"), tiles = { 'homedecor_television_top.png', 'homedecor_television_bottom.png', - 'homedecor_television_right.png', + 'homedecor_television_left.png^[transformFX', 'homedecor_television_left.png', 'homedecor_television_back.png', { name="homedecor_television_front_animated.png", @@ -132,8 +132,8 @@ minetest.register_node("homedecor:dvd_vcr", { minetest.register_node("homedecor:telephone", { tiles = { - "homedecor_telephone_top.png", - "homedecor_telephone_bottom.png", + "homedecor_telephone_sides.png^[transformR180", + "homedecor_telephone_sides.png", "homedecor_telephone_sides.png", "homedecor_telephone_sides.png", "homedecor_telephone_sides.png", diff --git a/mods/homedecor_modpack/homedecor/fences.lua b/mods/homedecor_modpack/homedecor/fences.lua old mode 100755 new mode 100644 index bf956982..0ea258b7 --- a/mods/homedecor_modpack/homedecor/fences.lua +++ b/mods/homedecor_modpack/homedecor/fences.lua @@ -1,5 +1,19 @@ -- This file adds fences of various types +local signs_modpath = minetest.get_modpath("signs_lib") + +local sign_post_model = { + type = "fixed", + fixed = { + {-0.4375, -0.25, -0.1875, 0.4375, 0.375, -0.125}, + {-0.125, -0.5, -0.125, 0.125, 0.5, 0.125}, + } +} + +if signs_modpath then + sign_post_model = signs_lib.sign_post_model.nodebox +end + local S = homedecor.gettext minetest.register_node("homedecor:fence_brass", { @@ -7,7 +21,6 @@ minetest.register_node("homedecor:fence_brass", { drawtype = "fencelike", tiles = {"homedecor_tile_brass.png"}, inventory_image = "homedecor_fence_brass.png", - wield_image = "homedecor_pole_brass.png", paramtype = "light", selection_box = { type = "fixed", @@ -23,7 +36,6 @@ minetest.register_node("homedecor:fence_wrought_iron", { drawtype = "fencelike", tiles = {"homedecor_tile_wrought_iron.png"}, inventory_image = "homedecor_fence_wrought_iron.png", - wield_image = "homedecor_pole_wrought_iron.png", paramtype = "light", selection_box = { type = "fixed", @@ -50,7 +62,7 @@ minetest.register_node("homedecor:fence_brass_with_sign", { wield_image = "homedecor_sign_brass_post.png", paramtype = "light", paramtype2 = "facedir", - node_box = signs_lib.sign_post_model.nodebox, + node_box = sign_post_model, groups = {snappy=3,not_in_creative_inventory=1}, sounds = default.node_sound_wood_defaults(), walkable = true, @@ -78,7 +90,7 @@ minetest.register_node("homedecor:fence_wrought_iron_with_sign", { wield_image = "homedecor_sign_wrought_iron_post.png", paramtype = "light", paramtype2 = "facedir", - node_box = signs_lib.sign_post_model.nodebox, + node_box = sign_post_model, groups = {snappy=3,not_in_creative_inventory=1}, sounds = default.node_sound_wood_defaults(), walkable = true, @@ -380,11 +392,11 @@ minetest.register_node("homedecor:fence_chainlink_corner", { description = S("Chainlink Fence Corner"), tiles = { "homedecor_fence_chainlink_corner_top.png", - "homedecor_fence_chainlink_corner_bottom.png", - "homedecor_fence_chainlink_corner_left.png", - "homedecor_fence_chainlink_corner_right.png", + "homedecor_fence_chainlink_corner_top.png", + "homedecor_fence_chainlink_corner_front.png", + "homedecor_fence_chainlink_corner_front.png", + "homedecor_fence_chainlink_corner_front.png", "homedecor_fence_chainlink_corner_front.png", - "homedecor_fence_chainlink_corner_back.png", }, paramtype = "light", is_ground_content = true, @@ -494,5 +506,8 @@ minetest.register_node("homedecor:fence_wrought_iron_2_corner", { }, }) -signs_lib.register_fence_with_sign("homedecor:fence_brass", "homedecor:fence_brass_with_sign") -signs_lib.register_fence_with_sign("homedecor:fence_wrought_iron", "homedecor:fence_wrought_iron_with_sign") +if signs_modpath then + signs_lib.register_fence_with_sign("homedecor:fence_brass", "homedecor:fence_brass_with_sign") + signs_lib.register_fence_with_sign("homedecor:fence_wrought_iron", "homedecor:fence_wrought_iron_with_sign") +end + diff --git a/mods/homedecor_modpack/homedecor/furnaces.lua b/mods/homedecor_modpack/homedecor/furnaces.lua old mode 100755 new mode 100644 index f3fef1c8..08ece771 --- a/mods/homedecor_modpack/homedecor/furnaces.lua +++ b/mods/homedecor_modpack/homedecor/furnaces.lua @@ -365,14 +365,14 @@ homedecor.register_furnace("homedecor:oven_steel", { homedecor.register_furnace("homedecor:microwave_oven", { description = S("Microwave Oven"), tiles = { - "homedecor_microwave_top.png", "homedecor_microwave_bottom.png", - "homedecor_microwave_right.png", "homedecor_microwave_left.png", - "homedecor_microwave_back.png", "homedecor_microwave_front.png" + "homedecor_microwave_top.png", "homedecor_microwave_top.png^[transformR180", + "homedecor_microwave_top.png^[transformR270", "homedecor_microwave_top.png^[transformR90", + "homedecor_microwave_top.png^[transformR180", "homedecor_microwave_front.png" }, tiles_active = { - "homedecor_microwave_top.png", "homedecor_microwave_bottom.png", - "homedecor_microwave_right.png", "homedecor_microwave_left.png", - "homedecor_microwave_back.png", "homedecor_microwave_front_active.png" + "homedecor_microwave_top.png", "homedecor_microwave_top.png^[transformR180", + "homedecor_microwave_top.png^[transformR270", "homedecor_microwave_top.png^[transformR90", + "homedecor_microwave_top.png^[transformR180", "homedecor_microwave_front_active.png" }, output_slots = 2, output_width = 2, diff --git a/mods/homedecor_modpack/homedecor/furniture.lua b/mods/homedecor_modpack/homedecor/furniture.lua old mode 100755 new mode 100644 index 49133208..a8d8ef01 --- a/mods/homedecor_modpack/homedecor/furniture.lua +++ b/mods/homedecor_modpack/homedecor/furniture.lua @@ -52,21 +52,22 @@ for i in ipairs(chaircolors) do local color = "_"..chaircolors[i][1] local color2 = chaircolors[i][1] local name = S(chaircolors[i][2]) - - if chaircolors[i][1] == "" then - color = "" - end - - minetest.register_node("homedecor:chair"..color, { - description = S("Kitchen chair (%s)"):format(name), - tiles = { + local chairtiles = { "forniture_kitchen_chair_top"..color..".png", "forniture_wood.png", "forniture_kitchen_chair_sides"..color..".png", "forniture_kitchen_chair_sides"..color..".png^[transformFX", "forniture_kitchen_chair_back"..color..".png", "forniture_kitchen_chair_front"..color..".png", - }, + } + if chaircolors[i][1] == "" then + color = "" + chairtiles = { "forniture_wood.png" } + end + + minetest.register_node("homedecor:chair"..color, { + description = S("Kitchen chair (%s)"):format(name), + tiles = chairtiles, drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", @@ -133,53 +134,22 @@ end minetest.register_node(":homedecor:openframe_bookshelf", { description = "Bookshelf (open-frame)", - drawtype = "nodebox", + drawtype = "mesh", + mesh = "homedecor_openframe_bookshelf.obj", + tiles = { "homedecor_openframe_bookshelf.png" }, is_ground_content = false, groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3}, sounds = default.node_sound_wood_defaults(), - tiles = { - "3dbookshelf_openframe_top.png", - "3dbookshelf_openframe_bottom.png", - "3dbookshelf_openframe_right.png", - "3dbookshelf_openframe_left.png", - "3dbookshelf_openframe_back.png", - "3dbookshelf_openframe_front.png" - - }, paramtype = "light", paramtype2 = "facedir", selection_box = { type = "fixed", fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 } }, - node_box = { + collision_box = { type = "fixed", - fixed = { - {-0.4375, -0.5, 0, -0.375, 0.5, 0.5}, - {0.375, -0.5, 0, 0.4375, 0.5, 0.5}, - {-0.5, -0.5, 0, 0.5, -0.4375, 0.5}, - {-0.5, 0, 0, 0.5, 0.0625, 0.5}, - {-0.375, 0.0625, 0.176, -0.25, 0.5, 0.5}, - {-0.25, 0.0625, 0.253, -0.1875, 0.4375, 0.5}, - {-0.1875, 0.0625, 0.227, -0.125, 0.5, 0.5}, - {-0.125, 0.0625, 0.176, 0, 0.4375, 0.5}, - {0, 0.0625, 0.232, 0.0625, 0.375, 0.5}, - {0.0625, 0.0625, 0.130, 0.1875, 0.5, 0.5}, - {0.1875, 0.0625, 0.217, 0.25, 0.4375, 0.5}, - {0.25, 0.0625, 0.166, 0.3125, 0.5, 0.5}, - {0.3125, 0.0625, 0.242, 0.375, 0.4375, 0.5}, - {-0.375, -0.4375, 0.191, -0.3125, -0.0625, 0.5}, - {-0.3125, -0.4375, 0.191, -0.1875, -0.125, 0.5}, - {-0.1875, -0.4375, 0.227, -0.125, -0.0625, 0.5}, - {-0.125, -0.4375, 0.0737, 0, -0.0625, 0.5}, - {0, -0.4375, 0.145, 0.0625, -0.125, 0.5}, - {0.0625, -0.4375, 0.212, 0.125, -0.1875, 0.5}, - {0.125, -0.4375, 0.207, 0.1875, -0.125, 0.5}, - {0.1875, -0.4375, 0.176, 0.25, -0.125, 0.5}, - {0.25, -0.4375, 0.258, 0.3125, -0.1875, 0.5}, - {0.3125, -0.4375, 0.130, 0.375, -0.0625, 0.5} - } - } + fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 } + }, }) local bedcolors = { @@ -281,10 +251,8 @@ for _, color in ipairs(bedcolors) do {-0.5, -0.5, -0.5, -0.375, 0.1875, -0.4375}, -- NodeBox1 {0.375, -0.5, -0.5, 0.5, 0.1875, -0.4375}, -- NodeBox2 {-0.5, 0, -0.5, 0.5, 0.125, -0.4375}, -- NodeBox3 - {-0.5, -0.375, -0.5, 0.5, -0.125, -0.4375}, -- NodeBox4 {-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox5 - {0.375, -0.375, -0.5, 0.4375, -0.125, 0.5}, -- NodeBox6 - {-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox7 + {-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox6 } }, selection_box = { @@ -330,10 +298,8 @@ for _, color in ipairs(bedcolors) do {-0.5, -0.5, -0.5, -0.375, 0.5, -0.4375}, -- NodeBox1 {0.375, -0.5, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox2 {-0.5, 0, -0.5, 0.5, 0.125, -0.4375}, -- NodeBox3 - {-0.5, -0.375, -0.5, 0.5, -0.125, -0.4375}, -- NodeBox4 - {-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox5 - {0.375, -0.375, -0.5, 0.4375, -0.125, 0.5}, -- NodeBox6 - {-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox7 + {-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox4 + {-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox5 } }, selection_box = { @@ -356,11 +322,11 @@ end minetest.register_node("homedecor:wardrobe_top", { tiles = { - "homedecor_wardrobe_top.png", - "homedecor_wardrobe_bottom.png", - "homedecor_wardrobe_sides1.png", - "homedecor_wardrobe_sides1.png^[transformFX", - "homedecor_wardrobe_back1.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png^[transformR90", + "forniture_wood.png^[transformR270", + "forniture_wood.png^[transformR90", "homedecor_wardrobe_frontt.png" }, drawtype = "nodebox", @@ -383,11 +349,11 @@ minetest.register_node("homedecor:wardrobe_top", { minetest.register_node("homedecor:wardrobe_bottom", { tiles = { - "homedecor_wardrobe_top.png", - "homedecor_wardrobe_bottom.png", - "homedecor_wardrobe_sides2.png", - "homedecor_wardrobe_sides2.png^[transformFX", - "homedecor_wardrobe_back2.png", + "forniture_wood.png", + "forniture_wood.png^[transformR180", + "forniture_wood.png^[transformR90", + "forniture_wood.png^[transformR270", + "forniture_wood.png^[transformR90", "homedecor_wardrobe_frontb.png" }, inventory_image = "homedecor_wardrobe_inv.png", @@ -461,7 +427,7 @@ minetest.register_node("homedecor:simple_bench", { "homedecor_generic_wood.png", "homedecor_generic_wood.png", "homedecor_bench_large_2_left_back.png", - "homedecor_bench_large_2_left_front.png" + "homedecor_bench_large_2_left_back.png^[transformFX" }, description = "Simple Bench", drawtype = "nodebox", @@ -526,12 +492,12 @@ minetest.register_node("homedecor:bench_large_1_left", { minetest.register_node("homedecor:bench_large_1_right", { tiles = { - "homedecor_bench_large_1_right_top.png", - "homedecor_bench_large_1_right_bottom.png", + "homedecor_bench_large_1_left_top.png^[transformFX", + "homedecor_bench_large_1_left_bottom.png^[transformFX", "homedecor_bench_large_1_ends.png^[transformFX", "homedecor_bench_large_1_ends.png", - "homedecor_bench_large_1_right_back.png", - "homedecor_bench_large_1_right_front.png" + "homedecor_bench_large_1_left_back.png^[transformFX", + "homedecor_bench_large_1_left_front.png^[transformFX" }, drawtype = "nodebox", paramtype = "light", @@ -564,7 +530,7 @@ minetest.register_node("homedecor:bench_large_2_left", { "homedecor_generic_wood.png", "homedecor_generic_wood.png", "homedecor_bench_large_2_left_back.png", - "homedecor_bench_large_2_left_front.png" + "homedecor_bench_large_2_left_back.png^[transformFX" }, inventory_image = "homedecor_bench_large_2_inv.png", drawtype = "nodebox", @@ -617,7 +583,7 @@ minetest.register_node("homedecor:bench_large_2_right", { "homedecor_generic_wood.png", "homedecor_generic_wood.png", "homedecor_bench_large_2_right_back.png", - "homedecor_bench_large_2_right_front.png" + "homedecor_bench_large_2_right_back.png^[transformFX" }, drawtype = "nodebox", paramtype = "light", @@ -653,10 +619,10 @@ minetest.register_node("homedecor:bench_large_2_right", { minetest.register_node("homedecor:deckchair_head", { tiles = { "homedecor_deckchair_top_c1.png", - "homedecor_deckchair_bottom.png", + "homedecor_deckchair_sides.png", "homedecor_deckchair_sides.png", "homedecor_deckchair_sides.png^[transformFX", - "homedecor_deckchair_back.png", + "homedecor_deckchair_sides.png", "homedecor_deckchair_front.png" }, drawtype = "nodebox", @@ -691,7 +657,7 @@ minetest.register_node("homedecor:deckchair_head", { minetest.register_node("homedecor:deckchair_foot", { tiles = { "homedecor_deckchair_top_c2.png", - "homedecor_deckchair_bottom.png", + "homedecor_deckchair_sides.png", "homedecor_deckchair_sides.png", "homedecor_deckchair_sides.png^[transformFX", "homedecor_deckchair_front.png" diff --git a/mods/homedecor_modpack/homedecor/furniture_bathroom.lua b/mods/homedecor_modpack/homedecor/furniture_bathroom.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/furniture_medieval.lua b/mods/homedecor_modpack/homedecor/furniture_medieval.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/furniture_recipes.lua b/mods/homedecor_modpack/homedecor/furniture_recipes.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/init.lua b/mods/homedecor_modpack/homedecor/init.lua old mode 100755 new mode 100644 index 7413c554..47a1d6ce --- a/mods/homedecor_modpack/homedecor/init.lua +++ b/mods/homedecor_modpack/homedecor/init.lua @@ -20,11 +20,10 @@ homedecor.intllib_modpath = minetest.get_modpath("intllib") -- Boilerplate to support localized strings if intllib mod is installed. local S -if homedecor.intllib_modpath then - dofile(homedecor.intllib_modpath.."/intllib.lua") - S = intllib.Getter(minetest.get_current_modname()) +if minetest.get_modpath("intllib") then + S = intllib.Getter() else - S = function ( s ) return s end + S = function(s) return s end end homedecor.gettext = S @@ -67,6 +66,35 @@ function homedecor.get_nodedef_field(nodename, fieldname) return minetest.registered_nodes[nodename][fieldname] end +-- Place a two-node-tall single object (e.g. a floor lamp) + +function homedecor.place_twonode_vertical(itemstack, placer, pointed_thing, node) + local pos = pointed_thing.under + local pnode = minetest.get_node(pointed_thing.under) + local rnodedef = minetest.registered_nodes[pnode.name] + + if not rnodedef["buildable_to"] then + pos = pointed_thing.above + end + + local fdir = minetest.dir_to_facedir(placer:get_look_dir()) + local pos2 = { x = pos.x, y=pos.y + 1, z = pos.z } + + local tnode = minetest.get_node(pos) + local tnode2 = minetest.get_node(pos2) + + if homedecor.get_nodedef_field(tnode.name, "buildable_to") + and homedecor.get_nodedef_field(tnode2.name, "buildable_to") + and not minetest.is_protected(pos, placer:get_player_name()) + and not minetest.is_protected(pos2, placer:get_player_name()) then + minetest.add_node(pos, { name = node, param2 = fdir }) + if not homedecor.expect_infinite_stacks then + itemstack:take_item() + return itemstack + end + end +end + -- Stack one node above another function homedecor.stack_vertically(itemstack, placer, pointed_thing, node1, node2) diff --git a/mods/homedecor_modpack/homedecor/kitchen_cabinet.lua b/mods/homedecor_modpack/homedecor/kitchen_cabinet.lua old mode 100755 new mode 100644 index d35dbe41..7c3f2efe --- a/mods/homedecor_modpack/homedecor/kitchen_cabinet.lua +++ b/mods/homedecor_modpack/homedecor/kitchen_cabinet.lua @@ -125,12 +125,9 @@ minetest.register_node('homedecor:kitchen_cabinet_half', { minetest.register_node('homedecor:kitchen_cabinet_with_sink', { description = S("Kitchen Cabinet with sink"), - tiles = { 'homedecor_kitchen_cabinet_sinktop.png', - 'homedecor_kitchen_cabinet_bottom.png', - 'homedecor_kitchen_cabinet_sides.png', - 'homedecor_kitchen_cabinet_sides.png', - 'homedecor_kitchen_cabinet_sides.png', - 'homedecor_kitchen_cabinet_front.png'}, + drawtype = "mesh", + mesh = "homedecor_kitchen_sink.obj", + tiles = { "homedecor_kitchen_sink.png" }, sunlight_propagates = false, paramtype = "light", paramtype2 = "facedir", diff --git a/mods/homedecor_modpack/homedecor/laundry.lua b/mods/homedecor_modpack/homedecor/laundry.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/lighting.lua b/mods/homedecor_modpack/homedecor/lighting.lua old mode 100755 new mode 100644 index 7bd358f7..4b49b6cd --- a/mods/homedecor_modpack/homedecor/lighting.lua +++ b/mods/homedecor_modpack/homedecor/lighting.lua @@ -35,7 +35,7 @@ for i in ipairs(colors) do chance = 1, action = function(pos, node, active_object_count, active_object_count_wider) local fdir = node.param2 or 0 - nfdir = dirs2[fdir+1] + local nfdir = dirs2[fdir+1] minetest.add_node(pos, {name = "homedecor:glowlight_quarter_"..color, param2 = nfdir}) end, }) @@ -46,7 +46,7 @@ for i in ipairs(colors) do chance = 1, action = function(pos, node, active_object_count, active_object_count_wider) local fdir = node.param2 or 0 - nfdir = dirs2[fdir+1] + local nfdir = dirs2[fdir+1] minetest.add_node(pos, {name = "homedecor:glowlight_half_"..color, param2 = nfdir}) end, }) @@ -273,7 +273,7 @@ minetest.register_node('homedecor:candle', { drawtype = "nodebox", tiles = { 'homedecor_candle_top.png', - 'homedecor_candle_bottom.png', + 'homedecor_candle_top.png', {name="homedecor_candle_sides.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}, }, node_box = { @@ -400,132 +400,80 @@ minetest.register_node('homedecor:lattice_lantern_small', { local repl = { off="low", low="med", med="hi", hi="max", max="off", } local lamp_colors = { "", "blue", "green", "pink", "red", "violet" } +local tlamp_cbox = { + type = "fixed", + fixed = { -0.25, -0.5, -0.25, 0.25, 0.5, 0.25 } +} + +local slamp_cbox = { + type = "fixed", + fixed = { -0.25, -0.5, -0.25, 0.25, 1.5, 0.25 } +} + local function reg_lamp(suffix, nxt, tilesuffix, light, color) local lampcolor = "_"..color - local standingcolor = "_"..color local colordesc = " ("..color..")" if color == "" then lampcolor = "" - standingcolor = "_white" colordesc = " (white)" end + minetest.register_node("homedecor:table_lamp"..lampcolor.."_"..suffix, { - description = S("Table Lamp "..colordesc), - drawtype = "nodebox", - tiles = { - "forniture_table_lamp_s"..tilesuffix..".png", - "forniture_table_lamp_s"..tilesuffix..".png", - "forniture_table_lamp"..lampcolor.."_l"..tilesuffix..".png", - }, - paramtype = "light", - node_box = { - type = "fixed", - fixed = { - { -0.1500, -0.500, -0.1500, 0.1500, -0.45, 0.1500 }, - { -0.0500, -0.450, -0.0500, 0.0500, -0.40, 0.0500 }, - { -0.0250, -0.400, -0.0250, 0.0250, -0.10, 0.0250 }, - { -0.0125, -0.125, -0.2000, 0.0125, -0.10, 0.2000 }, - { -0.2000, -0.125, -0.0125, 0.2000, -0.10, 0.0125 }, - { -0.2000, -0.100, -0.2000, -0.1750, 0.30, 0.2000 }, - { 0.1750, -0.100, -0.2000, 0.2000, 0.30, 0.2000 }, - { -0.1750, -0.100, -0.2000, 0.1750, 0.30, -0.1750 }, - { -0.1750, -0.100, 0.1750, 0.1750, 0.30, 0.2000 }, + description = S("Table Lamp "..colordesc), + drawtype = "mesh", + mesh = "homedecor_table_lamp.obj", + tiles = { "homedecor_table_standing_lamp"..lampcolor.."_"..suffix..".png" }, + paramtype = "light", + walkable = false, + light_source = light, + selection_box = tlamp_cbox, + collision_box = tlamp_cbox, + groups = {cracky=2,oddly_breakable_by_hand=1, + not_in_creative_inventory=((light ~= nil) and 1) or nil, }, - }, - walkable = false, - light_source = light, - selection_box = { - type = "fixed", - fixed = { -0.2, -0.5, -0.2, 0.2, 0.30, 0.2 }, - }, - groups = {cracky=2,oddly_breakable_by_hand=1, - not_in_creative_inventory=((light ~= nil) and 1) or nil, - }, - drop = "homedecor:table_lamp"..lampcolor.."_off", - on_punch = function(pos, node, puncher) - node.name = "homedecor:table_lamp"..lampcolor.."_"..repl[suffix] - minetest.set_node(pos, node) - nodeupdate(pos) - end, + drop = "homedecor:table_lamp"..lampcolor.."_off", + on_punch = function(pos, node, puncher) + node.name = "homedecor:table_lamp"..lampcolor.."_"..repl[suffix] + minetest.set_node(pos, node) + nodeupdate(pos) + end, }) - if lampcolor == "" then - minetest.register_alias("3dforniture:table_lamp_"..suffix, "homedecor:table_lamp_"..suffix) - end -- standing lamps - minetest.register_node("homedecor:standing_lamp_bottom"..lampcolor.."_"..suffix, { - description = S("Standing Lamp"..colordesc), - drawtype = "nodebox", - tiles = { - "forniture_table_lamp_s"..tilesuffix..".png", - "homedecor_standing_lamp_bottom_sides.png", - }, - inventory_image = "homedecor_standing_lamp"..standingcolor.."_inv.png", - paramtype = "light", - node_box = { - type = "fixed", - fixed = { - { -0.1500, -0.500, -0.1500, 0.1500, -0.45, 0.1500 }, - { -0.0500, -0.450, -0.0500, 0.0500, -0.40, 0.0500 }, - { -0.0250, -0.400, -0.0250, 0.0250, 0.50, 0.0250 }, + minetest.register_node("homedecor:standing_lamp"..lampcolor.."_"..suffix, { + description = S("Standing Lamp"..colordesc), + drawtype = "mesh", + mesh = "homedecor_standing_lamp.obj", + tiles = { "homedecor_table_standing_lamp"..lampcolor.."_"..suffix..".png" }, + inventory_image = "homedecor_standing_lamp"..lampcolor.."_inv.png", + paramtype = "light", + walkable = false, + light_source = light, + groups = {cracky=2,oddly_breakable_by_hand=1, + not_in_creative_inventory=((light ~= nil) and 1) or nil, }, - }, - walkable = false, - light_source = light, - selection_box = { - type = "fixed", - fixed = { 0, 0, 0, 0, 0, 0} - }, - groups = {cracky=2,oddly_breakable_by_hand=1, - not_in_creative_inventory=((light ~= nil) and 1) or nil, - }, + selection_box = slamp_cbox, + collision_box = slamp_cbox, on_place = function(itemstack, placer, pointed_thing) - return homedecor.stack_vertically(itemstack, placer, pointed_thing, - "homedecor:standing_lamp_bottom"..lampcolor.."_"..suffix, "homedecor:standing_lamp_top"..lampcolor.."_"..suffix) - end, - }) - - minetest.register_node("homedecor:standing_lamp_top"..lampcolor.."_"..suffix, { - drawtype = "nodebox", - tiles = { - "forniture_table_lamp_s"..tilesuffix..".png", - "forniture_table_lamp_s"..tilesuffix..".png", - "forniture_standing_lamp"..lampcolor.."_l"..tilesuffix..".png" - }, - paramtype = "light", - node_box = { - type = "fixed", - fixed = { - { -0.0250, -0.500, -0.0250, 0.0250, 0.10, 0.0250 }, - { -0.0125, 0.0625, -0.2000, 0.0125, 0.10, 0.2000 }, - { -0.2000, 0.0625, -0.0125, 0.2000, 0.10, 0.0125 }, - { -0.2000, 0.100, -0.2000, -0.1750, 0.50, 0.2000 }, - { 0.1750, 0.100, -0.2000, 0.2000, 0.50, 0.2000 }, - { -0.1750, 0.100, -0.2000, 0.1750, 0.50, -0.1750 }, - { -0.1750, 0.100, 0.1750, 0.1750, 0.50, 0.2000 }, - }, - }, - walkable = false, - light_source = light, - selection_box = { - type = "fixed", - fixed = { -0.2, -1.5, -0.2, 0.2, 0.5, 0.2 }, - }, - groups = {snappy=3, not_in_creative_inventory=1}, - on_punch = function(pos, node, puncher) - node.name = "homedecor:standing_lamp_top"..lampcolor.."_"..repl[suffix] - minetest.set_node(pos, node) - nodeupdate(pos) - end, - after_dig_node = function(pos, oldnode, oldmetadata, digger) - local pos2 = { x = pos.x, y=pos.y - 1, z = pos.z } - if minetest.get_node(pos2).name == "homedecor:standing_lamp_bottom"..lampcolor.."_off" then - minetest.remove_node(pos2) - end - end, - drop = "homedecor:standing_lamp_bottom"..lampcolor.."_off" + return homedecor.place_twonode_vertical(itemstack, placer, pointed_thing, + "homedecor:standing_lamp"..lampcolor.."_"..suffix) + end, + on_punch = function(pos, node, puncher) + node.name = "homedecor:standing_lamp"..lampcolor.."_"..repl[suffix] + minetest.set_node(pos, node) + nodeupdate(pos) + end, }) + + -- "bottom" in the node name is obsolete now, as "top" node doesn't exist anymore. + minetest.register_alias("homedecor:standing_lamp_bottom"..lampcolor.."_"..suffix, "homedecor:standing_lamp"..lampcolor.."_"..suffix) + minetest.register_alias("homedecor:standing_lamp_top"..lampcolor.."_"..suffix, "air") + + -- for old maps that had 3dfornit`ure + if lampcolor == "" then + minetest.register_alias("3dforniture:table_lamp_"..suffix, "homedecor:table_lamp_"..suffix) + end end for _, color in ipairs(lamp_colors) do diff --git a/mods/homedecor_modpack/homedecor/listnodes.sh b/mods/homedecor_modpack/homedecor/listnodes.sh old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locale/de.txt b/mods/homedecor_modpack/homedecor/locale/de.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locale/es.txt b/mods/homedecor_modpack/homedecor/locale/es.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locale/fr.txt b/mods/homedecor_modpack/homedecor/locale/fr.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locale/pt.txt b/mods/homedecor_modpack/homedecor/locale/pt.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locale/template.txt b/mods/homedecor_modpack/homedecor/locale/template.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/locked.lua b/mods/homedecor_modpack/homedecor/locked.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/misc-bathroom.lua b/mods/homedecor_modpack/homedecor/misc-bathroom.lua old mode 100755 new mode 100644 index 78b0d862..e0986cda --- a/mods/homedecor_modpack/homedecor/misc-bathroom.lua +++ b/mods/homedecor_modpack/homedecor/misc-bathroom.lua @@ -156,28 +156,19 @@ minetest.register_node("homedecor:medicine_cabinet_open", { minetest.register_node("homedecor:toilet_paper", { description = S("Toilet paper"), - tiles = { - "homedecor_toilet_paper_sides.png", - "homedecor_toilet_paper_sides.png", - "homedecor_toilet_paper_ends.png", - "homedecor_toilet_paper_ends.png", - "homedecor_toilet_paper_sides.png", - "homedecor_toilet_paper_sides.png" - }, + drawtype = "mesh", + mesh = "homedecor_toilet_paper.obj", + tiles = { "homedecor_toilet_paper.png" }, inventory_image = "homedecor_toilet_paper_inv.png", - drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", - node_box = { + selection_box = { type = "fixed", - fixed = { - {-0.25, 0.1875, 0.4375, -0.1875, 0.375, 0.5}, -- NodeBox1 - {0.125, 0.1875, 0.4375, 0.1875, 0.375, 0.5}, -- NodeBox2 - {-0.25, 0.25, 0.1875, -0.1875, 0.3125, 0.5}, -- NodeBox3 - {0.125, 0.25, 0.1875, 0.1875, 0.3125, 0.5}, -- NodeBox4 - {-0.1875, 0.125, 0.125, 0.125, 0.4375, 0.3125}, -- NodeBox5 - {-0.1875, 0.1875, 0.0625, 0.125, 0.375, 0.375}, -- NodeBox6 - } + fixed = { -0.1875, 0.125, 0.0625, 0.25, 0.4375, 0.5 } + }, + collision_box = { + type = "fixed", + fixed = { -0.1875, 0.125, 0.0625, 0.25, 0.4375, 0.5 } }, groups = {snappy=2,oddly_breakable_by_hand=3,flammable=3}, sounds = default.node_sound_defaults(), diff --git a/mods/homedecor_modpack/homedecor/misc-electrical.lua b/mods/homedecor_modpack/homedecor/misc-electrical.lua old mode 100755 new mode 100644 index a2616948..9992de4c --- a/mods/homedecor_modpack/homedecor/misc-electrical.lua +++ b/mods/homedecor_modpack/homedecor/misc-electrical.lua @@ -9,7 +9,7 @@ minetest.register_node("homedecor:power_outlet", { "homedecor_outlet_edges.png", "homedecor_outlet_edges.png", "homedecor_outlet_back.png", - "homedecor_outlet_front.png" + "homedecor_outlet_edges.png" }, inventory_image = "homedecor_outlet_inv.png", node_box = { diff --git a/mods/homedecor_modpack/homedecor/misc-nodes.lua b/mods/homedecor_modpack/homedecor/misc-nodes.lua old mode 100755 new mode 100644 index 48f5335d..1cd5ab4b --- a/mods/homedecor_modpack/homedecor/misc-nodes.lua +++ b/mods/homedecor_modpack/homedecor/misc-nodes.lua @@ -82,125 +82,74 @@ minetest.register_node('homedecor:rug_large', { }, }) -local flower_pot_model = { - type = "fixed", - fixed = { - {-0.1875, -0.5, -0.1875, 0.1875, -0.3125, 0.1875}, - {-0.25, -0.5, -0.0625, 0.25, -0.3125, 0.0625}, - {-0.0625, -0.5, -0.25, 0.0625, -0.25, 0.25}, - {-0.25, -0.3125, -0.25, 0.25, -0.125, 0.25}, - {-0.125, -0.3125, -0.3125, 0.125, -0.125, 0.3125}, - {-0.3125, -0.3125, -0.125, 0.3125, -0.125, 0.125}, - {-0.3125, -0.125, -0.25, 0.3125, 0.0625, 0.25}, - {-0.125, -0.125, -0.375, 0.125, 0.0625, 0.375}, - {-0.375, -0.125, -0.125, 0.375, 0.0625, 0.125}, - {-0.25, -0.125, -0.3125, 0.25, 0.0625, 0.3125}, - {-0.4375, 0.0625, -0.1875, 0.4375, 0.25, 0.1875}, - {-0.1875, 0.0625, -0.4375, 0.1875, 0.25, 0.4375}, - {-0.3125, 0.0625, -0.375, 0.3125, 0.25, 0.375}, - {-0.375, 0.0625, -0.3125, 0.375, 0.25, 0.3125}, - {-0.1875, 0.25, -0.5, 0.1875, 0.5, 0.5}, - {-0.5, 0.25, -0.1875, 0.5, 0.5, 0.1875}, - {-0.4375, 0.25, -0.3125, 0.4375, 0.5, 0.3125}, - {-0.3125, 0.25, -0.4375, 0.3125, 0.5, 0.4375}, - {-0.375, 0.25, -0.375, 0.375, 0.5, 0.375}, - } -} - minetest.register_node('homedecor:flower_pot_terracotta', { - drawtype = "nodebox", description = S("Terracotta Flower Pot"), - tiles = { 'homedecor_flower_pot_terracotta_top.png', - 'homedecor_flower_pot_terracotta_bottom.png', - 'homedecor_flower_pot_terracotta_sides.png', - 'homedecor_flower_pot_terracotta_sides.png', - 'homedecor_flower_pot_terracotta_sides.png', - 'homedecor_flower_pot_terracotta_sides.png'}, + drawtype = "mesh", + mesh = "homedecor_flowerpot.obj", + tiles = { "homedecor_flower_pot_terracotta.png" }, sunlight_propagates = false, paramtype = "light", paramtype2 = "facedir", walkable = true, groups = { snappy = 3 }, - node_box = flower_pot_model, sounds = default.node_sound_leaves_defaults(), }) minetest.register_node('homedecor:flower_pot_black', { - drawtype = "nodebox", description = S("Black Plastic Flower Pot"), - tiles = { 'homedecor_flower_pot_black_top.png', - 'homedecor_flower_pot_black_bottom.png', - 'homedecor_flower_pot_black_sides.png', - 'homedecor_flower_pot_black_sides.png', - 'homedecor_flower_pot_black_sides.png', - 'homedecor_flower_pot_black_sides.png'}, + drawtype = "mesh", + mesh = "homedecor_flowerpot.obj", + tiles = { "homedecor_flower_pot_black.png" }, sunlight_propagates = false, paramtype = "light", paramtype2 = "facedir", walkable = true, groups = { snappy = 3 }, - node_box = flower_pot_model, sounds = default.node_sound_leaves_defaults(), }) minetest.register_node('homedecor:flower_pot_green', { - drawtype = "nodebox", description = S("Green Plastic Flower Pot"), - tiles = { 'homedecor_flower_pot_green_top.png', - 'homedecor_flower_pot_green_bottom.png', - 'homedecor_flower_pot_green_sides.png', - 'homedecor_flower_pot_green_sides.png', - 'homedecor_flower_pot_green_sides.png', - 'homedecor_flower_pot_green_sides.png'}, + drawtype = "mesh", + mesh = "homedecor_flowerpot.obj", + tiles = { "homedecor_flower_pot_green.png" }, sunlight_propagates = false, paramtype = "light", paramtype2 = "facedir", walkable = true, groups = { snappy = 3 }, - node_box = flower_pot_model, sounds = default.node_sound_leaves_defaults(), }) --- cylinder-shaped objects courtesy Jeija - -local cylbox = {} -local detail = 50 -local sehne -local size = 0.2 - -for i = 1, detail-1 do - sehne = math.sqrt(0.25 - (((i/detail)-0.5)^2)) - cylbox[i]={((i/detail)-0.5)*size, -0.5, -sehne*size, ((i/detail)+(1/detail)-0.5)*size, 0.5, sehne*size} -end - minetest.register_node("homedecor:pole_brass", { description = S("Brass Pole"), - drawtype = "nodebox", + drawtype = "mesh", + mesh = "homedecor_round_pole.obj", tiles = {"homedecor_tile_brass2.png"}, - inventory_image = "homedecor_pole_brass2.png", - wield_image = "homedecor_pole_brass2.png", + inventory_image = "homedecor_pole_brass_inv.png", + wield_image = "homedecor_pole_brass_inv.png", paramtype = "light", paramtype2 = "facedir", is_ground_content = true, selection_box = { type = "fixed", - fixed = {-size/2, -0.5, -size/2, size/2, 0.5, size/2}, + fixed = { -0.125, -0.5, -0.125, 0.125, 0.5, 0.125 }, + }, + collision_box = { + type = "fixed", + fixed = { -0.125, -0.5, -0.125, 0.125, 0.5, 0.125 }, }, groups = {snappy=3}, sounds = default.node_sound_wood_defaults(), walkable = true, - node_box = { - type = "fixed", - fixed = cylbox, - } }) minetest.register_node("homedecor:pole_wrought_iron", { description = S("Wrought Iron Pole"), drawtype = "nodebox", tiles = {"homedecor_tile_wrought_iron2.png"}, - inventory_image = "homedecor_pole_wrought_iron.png", - wield_image = "homedecor_pole_wrought_iron.png", + inventory_image = "homedecor_pole_wrought_iron_inv.png", + wield_image = "homedecor_pole_wrought_iron_inv.png", paramtype = "light", paramtype2 = "facedir", is_ground_content = true, @@ -419,7 +368,7 @@ minetest.register_node("homedecor:dvd_cd_cabinet", { paramtype2 = "facedir", tiles = { "homedecor_dvdcd_cabinet_top.png", - "homedecor_dvdcd_cabinet_bottom.png", + "homedecor_dvdcd_cabinet_top.png", "homedecor_dvdcd_cabinet_sides.png", "homedecor_dvdcd_cabinet_sides.png^[transformFX", "homedecor_dvdcd_cabinet_back.png", @@ -450,11 +399,11 @@ minetest.register_node('homedecor:filing_cabinet', { drawtype = "nodebox", description = S("Filing Cabinet"), tiles = { - 'homedecor_filing_cabinet_top.png', + 'forniture_wood.png', 'homedecor_filing_cabinet_bottom.png', - 'homedecor_filing_cabinet_sides.png', - 'homedecor_filing_cabinet_sides.png^[transformFX', - 'homedecor_filing_cabinet_back.png', + 'forniture_wood.png', + 'forniture_wood.png', + 'forniture_wood.png', 'homedecor_filing_cabinet_front.png' }, sunlight_propagates = false, @@ -598,15 +547,13 @@ minetest.register_node("homedecor:dishwasher_granite", { groups = { snappy = 3 }, }) --- doghouse and pool table, models contributed by jp - minetest.register_node("homedecor:doghouse_base", { tiles = { "homedecor_doghouse_base_top.png", "homedecor_doghouse_base_bottom.png", "homedecor_doghouse_base_side.png", "homedecor_doghouse_base_side.png", - "homedecor_doghouse_base_back.png", + "homedecor_doghouse_base_side.png", "homedecor_doghouse_base_front.png" }, description = "Doghouse", @@ -653,7 +600,7 @@ minetest.register_node("homedecor:doghouse_roof", { "homedecor_doghouse_roof_bottom.png", "homedecor_doghouse_roof_side.png", "homedecor_doghouse_roof_side.png", - "homedecor_doghouse_roof_back.png", + "homedecor_doghouse_roof_front.png", "homedecor_doghouse_roof_front.png" }, drawtype = "nodebox", @@ -698,9 +645,9 @@ minetest.register_node("homedecor:pool_table", { "homedecor_pool_table_top1.png", "homedecor_pool_table_bottom1.png", "homedecor_pool_table_sides1.png", - "homedecor_pool_table_sides2.png", + "homedecor_pool_table_sides1.png^[transformFX", "homedecor_pool_table_end1.png", - "homedecor_pool_table_end2.png" + "homedecor_pool_table_end1.png" }, description = "Pool Table", inventory_image = "homedecor_pool_table_inv.png", @@ -756,12 +703,12 @@ minetest.register_node("homedecor:pool_table", { minetest.register_node("homedecor:pool_table_2", { tiles = { - "homedecor_pool_table_top2.png", - "homedecor_pool_table_bottom2.png", - "homedecor_pool_table_sides3.png", - "homedecor_pool_table_sides4.png", - "homedecor_pool_table_end3.png", - "homedecor_pool_table_end4.png" + "homedecor_pool_table_top1.png^[transformR180", + "homedecor_pool_table_bottom1.png", + "homedecor_pool_table_sides1.png^[transformFX", + "homedecor_pool_table_sides1.png", + "homedecor_pool_table_end1.png", + "homedecor_pool_table_end1.png" }, drawtype = "nodebox", paramtype = "light", @@ -953,7 +900,7 @@ minetest.register_node("homedecor:well_top", { }) minetest.register_node("homedecor:coatrack_wallmount", { - tiles = { "homedecor_coatrack_wood.png" }, + tiles = { "forniture_wood.png" }, inventory_image = "homedecor_coatrack_wallmount_inv.png", description = "Coatrack (wallmounted)", drawtype = "nodebox", @@ -977,7 +924,7 @@ minetest.register_node("homedecor:coatrack_wallmount", { }) minetest.register_node("homedecor:coat_tree", { - tiles = { "homedecor_coatrack_wood.png" }, + tiles = { "forniture_wood.png" }, inventory_image = "homedecor_coatrack_inv.png", description = "Coat tree", drawtype = "nodebox", @@ -1053,7 +1000,7 @@ minetest.register_node("homedecor:kitchen_faucet", { minetest.register_node("homedecor:cutlery_set", { tiles = { "homedecor_cutlery_set_top.png", - "homedecor_cutlery_set_bottom.png", + "homedecor_cutlery_set_sides.png", "homedecor_cutlery_set_sides.png" }, inventory_image = "homedecor_cutlery_set_inv.png", @@ -1096,48 +1043,90 @@ minetest.register_node("homedecor:cutlery_set", { } }) +local bottle_cbox = { + type = "fixed", + fixed = { + { -0.125, -0.5, -0.125, 0.125, 0, 0.125} + } +} + minetest.register_node("homedecor:bottle_brown", { - tiles = { - "homedecor_bottle_brown_top.png", - "homedecor_bottle_brown_sides.png" - }, + tiles = { "homedecor_bottle_brown.png" }, inventory_image = "homedecor_bottle_brown_inv.png", description = "Brown bottle", - drawtype = "nodebox", + drawtype = "mesh", + mesh = "homedecor_bottle.obj", paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, - use_texture_alpha = true, groups = {snappy=3}, - node_box = { - type = "fixed", - fixed = { - {-0.032, -0.50, -0.11, 0.032, -0.3, -0.046}, -- NodeBox1 - {-0.016, -0.30, -0.094, 0.016, -0.2, -0.062}, -- NodeBox2 - } - } + collision_box = bottle_cbox, + selection_box = bottle_cbox }) minetest.register_node("homedecor:bottle_green", { - tiles = { - "homedecor_bottle_green_top.png", - "homedecor_bottle_green_sides.png" - }, + tiles = { "homedecor_bottle_green.png" }, inventory_image = "homedecor_bottle_green_inv.png", description = "Green bottle", - drawtype = "nodebox", + drawtype = "mesh", + mesh = "homedecor_bottle.obj", paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, - use_texture_alpha = true, groups = {snappy=3}, - node_box = { - type = "fixed", - fixed = { - {-0.032, -0.50, -0.11, 0.032, -0.3, -0.046}, -- NodeBox1 - {-0.016, -0.30, -0.094, 0.016, -0.2, -0.062}, -- NodeBox2 - } + collision_box = bottle_cbox, + selection_box = bottle_cbox +}) + +-- 4-bottle sets + +local fbottle_cbox = { + type = "fixed", + fixed = { + { -0.375, -0.5, -0.3125, 0.375, 0, 0.3125 } } +} + +minetest.register_node("homedecor:4_bottles_brown", { + tiles = { "homedecor_bottle_brown.png" }, + inventory_image = "homedecor_4_bottles_brown_inv.png", + description = "Four brown bottles", + drawtype = "mesh", + mesh = "homedecor_4_bottles.obj", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + groups = {snappy=3}, + collision_box = fbottle_cbox, + selection_box = fbottle_cbox +}) + +minetest.register_node("homedecor:4_bottles_green", { + tiles = { "homedecor_bottle_green.png" }, + inventory_image = "homedecor_4_bottles_green_inv.png", + description = "Four green bottles", + drawtype = "mesh", + mesh = "homedecor_4_bottles.obj", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + groups = {snappy=3}, + collision_box = fbottle_cbox, + selection_box = fbottle_cbox +}) + +minetest.register_node("homedecor:4_bottles_multi", { + tiles = { "homedecor_4_bottles_multi.png" }, + inventory_image = "homedecor_4_bottles_multi_inv.png", + description = "Four misc brown/green bottles", + drawtype = "mesh", + mesh = "homedecor_4_bottles_multi.obj", + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + groups = {snappy=3}, + collision_box = fbottle_cbox, + selection_box = fbottle_cbox }) minetest.register_node("homedecor:coffee_maker", { @@ -1145,7 +1134,7 @@ minetest.register_node("homedecor:coffee_maker", { "homedecor_coffeemaker_top.png", "homedecor_coffeemaker_bottom.png", "homedecor_coffeemaker_right.png", - "homedecor_coffeemaker_left.png", + "homedecor_coffeemaker_right.png^[transformFX", "homedecor_coffeemaker_back.png", "homedecor_coffeemaker_front.png" }, @@ -1182,12 +1171,49 @@ minetest.register_node("homedecor:coffee_maker", { } }) +local fdir_to_steampos = { + x = { 0.15, 0.275, -0.15, -0.275 }, + z = { 0.275, -0.15, -0.275, 0.15 } +} + +minetest.register_abm({ + nodenames = "homedecor:coffee_maker", + interval = 2, + chance = 1, + action = function(pos, node) + local fdir = node.param2 + if fdir and fdir < 4 then + + local steamx = fdir_to_steampos.x[fdir + 1] + local steamz = fdir_to_steampos.z[fdir + 1] + + minetest.add_particlespawner({ + amount = 1, + time = 1, + minpos = {x=pos.x - steamx, y=pos.y - 0.35, z=pos.z - steamz}, + maxpos = {x=pos.x - steamx, y=pos.y - 0.35, z=pos.z - steamz}, + minvel = {x=-0.003, y=0.01, z=-0.003}, + maxvel = {x=0.003, y=0.01, z=-0.003}, + minacc = {x=0.0,y=-0.0,z=-0.0}, + maxacc = {x=0.0,y=0.003,z=-0.0}, + minexptime = 2, + maxexptime = 5, + minsize = 1, + maxsize = 1.2, + collisiondetection = false, + texture = "homedecor_steam.png", + }) + end + end +}) + minetest.register_node("homedecor:dartboard", { description = "Dartboard", - drawtype = "signlike", - tiles = {"homedecor_dartboard.png"}, - inventory_image = "homedecor_dartboard.png", - wield_image = "homedecor_dartboard.png", + drawtype = "mesh", + mesh = "homedecor_dartboard.obj", + tiles = { "homedecor_dartboard.png" }, + inventory_image = "homedecor_dartboard_inv.png", + wield_image = "homedecor_dartboard_inv.png", paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, @@ -1282,7 +1308,7 @@ minetest.register_node("homedecor:piano_right", { minetest.register_node("homedecor:toaster", { description = "Toaster", tiles = { - "homedecor_toaster_top.png", + "homedecor_toaster_sides.png", "homedecor_toaster_sides.png", "homedecor_toaster_sides.png", "homedecor_toaster_sides.png", @@ -1395,7 +1421,7 @@ minetest.register_node("homedecor:sportbench", { tiles = { "homedecor_sportbench_top.png", "wool_black.png", - "homedecor_sportbench_right.png", + "homedecor_sportbench_left.png^[transformFX", "homedecor_sportbench_left.png", "homedecor_sportbench_bottom.png", "homedecor_sportbench_front.png" @@ -1492,31 +1518,22 @@ minetest.register_node("homedecor:copper_pans", { }) minetest.register_node("homedecor:paper_towel", { - tiles = { - "homedecor_paper_towel_sides.png", - "homedecor_paper_towel_sides.png", - "homedecor_paper_towel_ends.png", - "homedecor_paper_towel_ends.png", - "homedecor_paper_towel_sides.png", - "homedecor_paper_towel_sides.png" - }, + drawtype = "mesh", + mesh = "homedecor_paper_towel.obj", + tiles = { "homedecor_paper_towel.png" }, inventory_image = "homedecor_paper_towel_inv.png", description = "Paper towels", - drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", - node_box = { + groups = { snappy=3 }, + selection_box = { type = "fixed", - fixed = { - {-0.4375, 0.1875, 0.4375, -0.375, 0.375, 0.5}, -- NodeBox1 - {0.375, 0.1875, 0.4375, 0.4375, 0.375, 0.5}, -- NodeBox2 - {-0.4375, 0.25, 0.1875, -0.375, 0.3125, 0.5}, -- NodeBox3 - {0.375, 0.25, 0.1875, 0.4375, 0.3125, 0.5}, -- NodeBox4 - {-0.375, 0.125, 0.125, 0.375, 0.4375, 0.3125}, -- NodeBox5 - {-0.375, 0.1875, 0.0625, 0.375, 0.375, 0.375}, -- NodeBox6 - } + fixed = { -0.4375, 0.125, 0.0625, 0.4375, 0.4375, 0.5 } }, - groups = { snappy=3 } + collision_box = { + type = "fixed", + fixed = { -0.4375, 0.125, 0.0625, 0.4375, 0.4375, 0.5 } + } }) minetest.register_node("homedecor:stonepath", { @@ -1624,7 +1641,7 @@ minetest.register_node("homedecor:beer_tap", { "homedecor_beertap_front.png", "homedecor_beertap_front.png", "homedecor_beertap_right.png", - "homedecor_beertap_left.png", + "homedecor_beertap_right.png^[transformFX", "homedecor_beertap_front.png", "homedecor_beertap_front.png" }, @@ -1675,8 +1692,8 @@ minetest.register_node("homedecor:beer_mug", { "homedecor_beer_top.png", "homedecor_beer_bottom.png", "homedecor_beer_right.png", - "homedecor_beer_left.png", - "homedecor_beer_back.png", + "homedecor_beer_right.png^[transformFX", + "homedecor_beer_front.png^[transformFX", "homedecor_beer_front.png" }, inventory_image = "homedecor_beer_inv.png", @@ -1785,8 +1802,8 @@ minetest.register_node("homedecor:swing", { description = "Tree's swing", tiles = { "homedecor_swing_top.png", - "homedecor_swing_bottom.png", - "homedecor_swing_sides.png" + "homedecor_swing_top.png^[transformR180", + "homedecor_swing_top.png" }, inventory_image = "homedecor_swing_inv.png", drawtype = "nodebox", @@ -1893,9 +1910,9 @@ minetest.register_node("homedecor:book_"..color, { "homedecor_book_"..color.."_top.png", "homedecor_book_"..color.."_bottom.png", "homedecor_book_right.png", - "homedecor_book_"..color.."_left.png", + "homedecor_book_"..color.."_bottom.png", "homedecor_book_back.png", - "homedecor_book_front.png" + "homedecor_book_back.png^[transformFX" }, inventory_image = "homedecor_book_"..color.."_inv.png", drawtype = "nodebox", @@ -1959,3 +1976,42 @@ minetest.register_node("homedecor:calendar", { legacy_wallmounted = true, sounds = default.node_sound_defaults(), }) + +local globe_cbox = { + type = "fixed", + fixed = { -0.4, -0.5, -0.3, 0.3, 0.3, 0.3 } +} + +minetest.register_node("homedecor:desk_globe", { + description = "Desk globe", + drawtype = "mesh", + mesh = "homedecor_desk_globe.obj", + tiles = {"homedecor_desk_globe.png"}, + inventory_image = "homedecor_desk_globe_inv.png", + paramtype = "light", + paramtype2 = "facedir", + selection_box = globe_cbox, + collision_box = globe_cbox, + groups = {choppy=2}, + sounds = default.node_sound_defaults(), +}) + +local wine_cbox = { + type = "fixed", + fixed = { -0.5, -0.5, -0.25, 0.5, 0.5, 0.5 } +} + +minetest.register_node("homedecor:wine_rack", { + description = "Wine Rack", + drawtype = "mesh", + mesh = "homedecor_wine_rack.obj", + tiles = {"homedecor_wine_rack.png"}, + inventory_image = "homedecor_wine_rack_inv.png", + paramtype = "light", + paramtype2 = "facedir", + groups = {choppy=2}, + selection_box = wine_cbox, + collision_box = wine_cbox, + sounds = default.node_sound_defaults(), +}) + diff --git a/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan.b3d b/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan.b3d old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan_uv.png b/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan_uv.png old mode 100755 new mode 100644 index b6204e54..84f8e413 Binary files a/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan_uv.png and b/mods/homedecor_modpack/homedecor/models/homedecor_desk_fan_uv.png differ diff --git a/mods/homedecor_modpack/homedecor/nightstands.lua b/mods/homedecor_modpack/homedecor/nightstands.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/paintings.lua b/mods/homedecor_modpack/homedecor/paintings.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/refrigerator.lua b/mods/homedecor_modpack/homedecor/refrigerator.lua old mode 100755 new mode 100644 index 052a97c7..34f7f048 --- a/mods/homedecor_modpack/homedecor/refrigerator.lua +++ b/mods/homedecor_modpack/homedecor/refrigerator.lua @@ -41,9 +41,9 @@ minetest.register_node("homedecor:refrigerator_steel_bottom", { tiles = { "default_steel_block.png", "homedecor_refrigerator_steel_bottom.png", - "homedecor_refrigerator_steel_sides2.png", - "homedecor_refrigerator_steel_sides2.png^[transformFX", - "homedecor_refrigerator_steel_back2.png", + "homedecor_refrigerator_steel_sides1.png", + "homedecor_refrigerator_steel_sides1.png^[transformFX", + "homedecor_refrigerator_steel_back1.png", "homedecor_refrigerator_steel_front2.png" }, inventory_image = "homedecor_refrigerator_steel_inv.png", @@ -159,9 +159,9 @@ minetest.register_node("homedecor:refrigerator_white_bottom", { tiles = { "default_steel_block.png", "homedecor_refrigerator_white_bottom.png", - "homedecor_refrigerator_white_sides2.png", - "homedecor_refrigerator_white_sides2.png^[transformFX", - "homedecor_refrigerator_white_back2.png", + "homedecor_refrigerator_white_sides1.png", + "homedecor_refrigerator_white_sides1.png^[transformFX", + "homedecor_refrigerator_white_back1.png", "homedecor_refrigerator_white_front2.png" }, inventory_image = "homedecor_refrigerator_white_inv.png", diff --git a/mods/homedecor_modpack/homedecor/shingles.lua b/mods/homedecor_modpack/homedecor/shingles.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/shutters.lua b/mods/homedecor_modpack/homedecor/shutters.lua old mode 100755 new mode 100644 index d052c93f..d5741b8f --- a/mods/homedecor_modpack/homedecor/shutters.lua +++ b/mods/homedecor_modpack/homedecor/shutters.lua @@ -21,32 +21,19 @@ for i in ipairs(shutters) do local desc = shutters[i][2] minetest.register_node("homedecor:shutter_"..name, { - description = S("Wooden Shutter ("..desc..")"), + drawtype = "mesh", + mesh = "homedecor_window_shutter.obj", tiles = { "homedecor_window_shutter_"..name..".png" }, - inventory_image = "homedecor_window_shutter_"..name..".png", - wield_image = "homedecor_window_shutter_"..name..".png", - drawtype = "nodebox", + description = S("Wooden Shutter ("..desc..")"), + inventory_image = "homedecor_window_shutter_"..name.."_inv.png", + wield_image = "homedecor_window_shutter_"..name.."_inv.png", paramtype = "light", - paramtype2 = "facedir", + paramtype2 = "wallmounted", groups = { snappy = 3 }, sounds = default.node_sound_wood_defaults(), - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, 0.44, 0.5, -0.3125, 0.5}, -- NodeBox1 - {-0.5, -0.5, 0.44, -0.3125, 0.5, 0.5}, -- NodeBox2 - {-0.5, 0.3125, 0.44, 0.5, 0.5, 0.5}, -- NodeBox3 - {0.3125, -0.5, 0.44, 0.5, 0.5, 0.5}, -- NodeBox4 - {-0.3125, 0.1875, 0.46, 0.3125, 0.25, 0.48}, -- NodeBox5 - {-0.3125, 0.0625, 0.46, 0.3125, 0.125, 0.48}, -- NodeBox6 - {-0.3125, -0.0625, 0.46, 0.3125, 0, 0.48}, -- NodeBox7 - {-0.3125, -0.1875, 0.46, 0.3125, -0.125, 0.48}, -- NodeBox8 - {-0.3125, -0.3125, 0.46, 0.3125, -0.25, 0.48}, -- NodeBox9 - } - }, selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, 0.44, 0.5, 0.5, 0.5 } + type = "wallmounted", +-- wall_side = { -0.5, -0.5, 0.44, 0.5, 0.5, 0.5 } }, }) end diff --git a/mods/homedecor_modpack/homedecor/slopes.lua b/mods/homedecor_modpack/homedecor/slopes.lua old mode 100755 new mode 100644 index e9de9380..c8086b54 --- a/mods/homedecor_modpack/homedecor/slopes.lua +++ b/mods/homedecor_modpack/homedecor/slopes.lua @@ -2,49 +2,61 @@ local S = homedecor.gettext --- Corner shingle nodes, courtesy Bas080 +local slope_cbox = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + {-0.5, -0.25, -0.25, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.25, 0.5}, + {-0.5, 0.25, 0.25, 0.5, 0.5, 0.5} + } +} -homedecor.register_outer_corner = function(modname, subname, groups, images, description) - local slopeboxedge = {} - local detail = homedecor.detail_level - for i = 0, detail-1 do - slopeboxedge[i+1]={-0.5, -0.5, (i/detail)-0.5, 0.5-(i/detail), (i/detail)-0.5+(1.25/detail), 0.5} - end +local ocorner_cbox = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, + {-0.5, -0.25, -0.25, 0.25, 0, 0.5}, + {-0.5, 0, 0, 0, 0.25, 0.5}, + {-0.5, 0.25, 0.25, -0.25, 0.5, 0.5} + } +} + +local icorner_cbox = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, -- NodeBox5 + {-0.5, -0.5, -0.25, 0.5, 0, 0.5}, -- NodeBox6 + {-0.5, -0.5, -0.5, 0.25, 0, 0.5}, -- NodeBox7 + {-0.5, 0, -0.5, 0, 0.25, 0.5}, -- NodeBox8 + {-0.5, 0, 0, 0.5, 0.25, 0.5}, -- NodeBox9 + {-0.5, 0.25, 0.25, 0.5, 0.5, 0.5}, -- NodeBox10 + {-0.5, 0.25, -0.5, -0.25, 0.5, 0.5}, -- NodeBox11 + } +} + +homedecor.register_outer_corner = function(modname, subname, groups, slope_image, description) minetest.register_node(modname..":shingle_outer_corner_" .. subname, { description = S(description.. " (outer corner)"), - drawtype = "nodebox", - tiles = images, + drawtype = "mesh", + mesh = "homedecor_slope_outer_corner.obj", + tiles = { "homedecor_slope_outer_corner_"..slope_image..".png" }, paramtype = "light", paramtype2 = "facedir", walkable = true, - selection_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, - {-0.5, -0.25, -0.25, 0.25, 0, 0.5}, - {-0.5, 0, 0, 0, 0.25, 0.5}, - {-0.5, 0.25, 0.25, -0.25, 0.5, 0.5} - } - }, - node_box = { - type = "fixed", - fixed = slopeboxedge - }, + selection_box = ocorner_cbox, + collision_box = ocorner_cbox, groups = groups, + on_place = minetest.rotate_node }) end -homedecor.register_inner_corner = function(modname, subname, groups, images, description) - local slopeboxedge = {} - local detail = homedecor.detail_level - for i = 0, detail-1 do - slopeboxedge[i+1]={-0.5, -0.5, -0.5, 0.5-(i/detail), (i/detail)-0.5+(1.25/detail), 0.5} - slopeboxedge[i+detail+1]={-0.5, -0.5, (i/detail)-0.5, 0.5, (i/detail)-0.5+(1.25/detail), 0.5} - end +homedecor.register_inner_corner = function(modname, subname, groups, slope_image, description) minetest.register_node(modname..":shingle_inner_corner_" .. subname, { description = S(description.. " (inner corner)"), - drawtype = "nodebox", - tiles = images, + drawtype = "mesh", + mesh = "homedecor_slope_inner_corner.obj", + tiles = { "homedecor_slope_inner_corner_"..slope_image..".png" }, paramtype = "light", paramtype2 = "facedir", walkable = true, @@ -52,41 +64,25 @@ homedecor.register_inner_corner = function(modname, subname, groups, images, des type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5} }, - node_box = { - type = "fixed", - fixed = slopeboxedge - }, + collision_box = icorner_cbox, groups = groups, + on_place = minetest.rotate_node }) end -homedecor.register_slope = function(modname, subname, recipeitem, groups, images, description) - local slopeboxedge = {} - local detail = homedecor.detail_level - for i = 0, detail-1 do - slopeboxedge[i+1]={-0.5, -0.5, (i/detail)-0.5, 0.5, (i/detail)-0.5+(1.25/detail), 0.5} - end +homedecor.register_slope = function(modname, subname, recipeitem, groups, slope_image, description) minetest.register_node(modname..":shingle_side_" .. subname, { description = S(description), - drawtype = "nodebox", - tiles = images, + drawtype = "mesh", + mesh = "homedecor_slope.obj", + tiles = { "homedecor_slope_"..slope_image..".png" }, paramtype = "light", paramtype2 = "facedir", walkable = true, - selection_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, - {-0.5, -0.25, -0.25, 0.5, 0, 0.5}, - {-0.5, 0, 0, 0.5, 0.25, 0.5}, - {-0.5, 0.25, 0.25, 0.5, 0.5, 0.5} - } - }, - node_box = { - type = "fixed", - fixed = slopeboxedge, - }, + selection_box = slope_cbox, + collision_box = slope_cbox, groups = groups, + on_place = minetest.rotate_node }) -- convert between flat shingles and slopes @@ -201,49 +197,28 @@ minetest.register_craft({ burntime = 30, }) -homedecor.register_roof = function(modname, subname, groups, images , description) - homedecor.register_outer_corner(modname, subname, groups, images, description) - homedecor.register_inner_corner(modname, subname, groups, images, description) +homedecor.register_roof = function(modname, subname, groups, slope_image , description) + homedecor.register_outer_corner(modname, subname, groups, slope_image, description) + homedecor.register_inner_corner(modname, subname, groups, slope_image, description) end -- corners homedecor.register_roof("homedecor", "wood", { snappy = 3 }, - { - "homedecor_shingles_wood_c_t.png", - "homedecor_shingles_wood_c_x.png", - "homedecor_shingles_wood_c_x.png", - "homedecor_shingles_wood_c_x.png", - "homedecor_shingles_wood_c_z.png", - "homedecor_shingles_wood_c_z.png", - }, + "wood", "Wood Shingles" ) homedecor.register_roof("homedecor", "asphalt", { snappy = 3 }, - { - "homedecor_shingles_asphalt_c_t.png", - "homedecor_shingles_asphalt_c_x.png", - "homedecor_shingles_asphalt_c_x.png", - "homedecor_shingles_asphalt_c_x.png", - "homedecor_shingles_asphalt_c_z.png", - "homedecor_shingles_asphalt_c_z.png", - }, + "asphalt", "Asphalt Shingles" ) homedecor.register_roof("homedecor", "terracotta", { snappy = 3 }, - { - "homedecor_shingles_terracotta_c_t.png", - "homedecor_shingles_terracotta_c_x.png", - "homedecor_shingles_terracotta_c_x.png", - "homedecor_shingles_terracotta_c_x.png", - "homedecor_shingles_terracotta_c_z.png", - "homedecor_shingles_terracotta_c_z.png", - }, + "terracotta", "Terracotta Shingles" ) @@ -252,52 +227,28 @@ homedecor.register_roof("homedecor", "terracotta", homedecor.register_slope("homedecor", "wood", "homedecor:shingles_wood", { snappy = 3 }, - { - "homedecor_shingles_wood_s_t.png", - "homedecor_shingles_wood_s_z.png", - "homedecor_shingles_wood_s_z.png", - "homedecor_shingles_wood_s_z.png", - "homedecor_shingles_wood_s_z.png", - "homedecor_shingles_wood_s_z.png", - }, + "wood", "Wood Shingles" ) homedecor.register_slope("homedecor", "asphalt", "homedecor:shingles_asphalt", { snappy = 3 }, - { - "homedecor_shingles_asphalt_s_t.png", - "homedecor_shingles_asphalt_s_z.png", - "homedecor_shingles_asphalt_s_z.png", - "homedecor_shingles_asphalt_s_z.png", - "homedecor_shingles_asphalt_s_z.png", - "homedecor_shingles_asphalt_s_z.png", - }, + "asphalt", "Asphalt Shingles" ) homedecor.register_slope("homedecor", "terracotta", "homedecor:shingles_terracotta", { snappy = 3 }, - { - "homedecor_shingles_terracotta_s_t.png", - "homedecor_shingles_terracotta_s_z.png", - "homedecor_shingles_terracotta_s_z.png", - "homedecor_shingles_terracotta_s_z.png", - "homedecor_shingles_terracotta_s_z.png", - "homedecor_shingles_terracotta_s_z.png", - }, + "terracotta", "Terracotta Shingles" ) homedecor.register_slope("homedecor", "glass", "homedecor:shingles_glass", { snappy = 3 }, - { - "homedecor_shingles_glass_top.png", - "homedecor_shingles_glass.png" - }, + "glass", "Glass Shingles" ) diff --git a/mods/homedecor_modpack/homedecor/sounds/homedecor_door_close.ogg b/mods/homedecor_modpack/homedecor/sounds/homedecor_door_close.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/sounds/homedecor_door_open.ogg b/mods/homedecor_modpack/homedecor/sounds/homedecor_door_open.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/sounds/homedecor_doorbell.ogg b/mods/homedecor_modpack/homedecor/sounds/homedecor_doorbell.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/sounds/homedecor_gate_open_close.ogg b/mods/homedecor_modpack/homedecor/sounds/homedecor_gate_open_close.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/sounds/homedecor_toilet_flush.ogg b/mods/homedecor_modpack/homedecor/sounds/homedecor_toilet_flush.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/sounds/toaster.ogg b/mods/homedecor_modpack/homedecor/sounds/toaster.ogg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/tables.lua b/mods/homedecor_modpack/homedecor/tables.lua old mode 100755 new mode 100644 index f4c2ab17..48b3c4c8 --- a/mods/homedecor_modpack/homedecor/tables.lua +++ b/mods/homedecor_modpack/homedecor/tables.lua @@ -7,6 +7,11 @@ local materials = { {"wood","Wood"} } +local tables_cbox = { + type = "fixed", + fixed = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 }, +} + for i in ipairs(materials) do local m = materials[i][1] local d = materials[i][2] @@ -20,213 +25,47 @@ for i in ipairs(materials) do -- small square tables - minetest.register_node("homedecor:"..m.."_table_small_square_b", { + minetest.register_node("homedecor:"..m.."_table_small_square", { description = S(d.." Table (Small, Square)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_square_tb.png', - 'homedecor_'..m..'_table_small_square_tb.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png' - }, - wield_image = 'homedecor_'..m..'_table_small_square_tb.png', - inventory_image = 'homedecor_'..m..'_table_small_square_tb.png', + drawtype = 'mesh', + mesh = "homedecor_table_small_square.obj", + tiles = { 'homedecor_'..m..'_table_small_square.png' }, + wield_image = 'homedecor_'..m..'_table_small_square_inv.png', + inventory_image = 'homedecor_'..m..'_table_small_square_inv.png', sunlight_propagates = true, paramtype = 'light', walkable = true, groups = { snappy = 3 }, sounds = s, paramtype2 = "facedir", - - node_box = { - type = "fixed", - fixed = { - { -0.4375, -0.5, -0.5, 0.4375, -0.4375, 0.5 }, - { -0.5, -0.5, -0.4375, 0.5, -0.4375, 0.4375 } - }, - }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 }, - }, + selection_box = tables_cbox, + collision_box = tables_cbox, on_place = minetest.rotate_node }) - minetest.register_node('homedecor:'..m..'_table_small_square_t', { - description = S(d.." Table (Small, Square)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_square_tb.png', - 'homedecor_'..m..'_table_small_square_tb.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png' - }, - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - - node_box = { - type = "fixed", - fixed = { - { -0.4375, 0.4375, -0.5, 0.4375, 0.5, 0.5 }, - { -0.5, 0.4375, -0.4375, 0.5, 0.5, 0.4375 } - }, - }, - selection_box = { - type = "fixed", - fixed = { -0.5, 0.4375, -0.5, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_small_square_b' - }) - - minetest.register_node('homedecor:'..m..'_table_small_square_s', { - description = S(d.." Table (Small, Square)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_edges.png', - 'homedecor_'..m..'_table_small_square_tb.png', - 'homedecor_'..m..'_table_small_square_tb.png', - }, - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - - node_box = { - type = "fixed", - fixed = { - { -0.4375, -0.5, 0.4375, 0.4375, 0.5, 0.5 }, - { -0.5, -0.4375, 0.4375, 0.5, 0.4375, 0.5 } - } - }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, 0.4375, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_small_square_b' - }) - -- small round tables - minetest.register_node('homedecor:'..m..'_table_small_round_b', { + minetest.register_node('homedecor:'..m..'_table_small_round', { description = S(d.." Table (Small, Round)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_round_tb.png', - 'homedecor_'..m..'_table_small_round_tb.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png' - }, - wield_image = 'homedecor_'..m..'_table_small_round_tb.png', - inventory_image = 'homedecor_'..m..'_table_small_round_tb.png', + drawtype = "mesh", + mesh = "homedecor_table_small_round.obj", + tiles = { "homedecor_"..m.."_table_small_round.png" }, + wield_image = 'homedecor_'..m..'_table_small_round_inv.png', + inventory_image = 'homedecor_'..m..'_table_small_round_inv.png', sunlight_propagates = true, paramtype = 'light', walkable = true, groups = { snappy = 3 }, sounds = s, paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { - { -0.25, -0.5, -0.5, 0.25, -0.4375, 0.5 }, - { -0.375, -0.5, -0.4375, 0.375, -0.4375, 0.4375 }, - { -0.5, -0.5, -0.25, 0.5, -0.4375, 0.25 }, - { -0.4375, -0.5, -0.375, 0.4375, -0.4375, 0.375 }, - { -0.25, -0.5, -0.5, 0.25, -0.4375, 0.5 }, - } - }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 }, - }, + selection_box = tables_cbox, + collision_box = tables_cbox, on_place = minetest.rotate_node }) - minetest.register_node('homedecor:'..m..'_table_small_round_t', { - description = S(d.." Table (Small, Round)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_round_tb.png', - 'homedecor_'..m..'_table_small_round_tb.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png' - }, - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { - { -0.25, 0.4375, -0.5, 0.25, 0.5, 0.5 }, - { -0.375, 0.4375, -0.4375, 0.375, 0.5, 0.4375 }, - { -0.5, 0.4375, -0.25, 0.5, 0.5, 0.25 }, - { -0.4375, 0.4375, -0.375, 0.4375, 0.5, 0.375 }, - { -0.25, 0.4375, -0.5, 0.25, 0.5, 0.5 }, - } - }, - selection_box = { - type = "fixed", - fixed = { -0.5, 0.4375, -0.5, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_small_round_b' - }) - - minetest.register_node('homedecor:'..m..'_table_small_round_s', { - description = S(d.." Table (Small, Round)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_edges.png', - 'homedecor_'..m..'_table_small_round_tb.png', - 'homedecor_'..m..'_table_small_round_tb.png', - }, - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { - { -0.25, -0.5, 0.4375, 0.25, 0.5, 0.5 }, - { -0.375, -0.4375, 0.4375, 0.375, 0.4375, 0.5 }, - { -0.5, -0.25, 0.4375, 0.5, 0.25, 0.5 }, - { -0.4375, -0.375, 0.4375, 0.4375, 0.375, 0.5 }, - { -0.25, -0.5, 0.4375, 0.25, 0.5, 0.5 }, - } - }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, 0.4375, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_small_round_b' - }) - -- Large square table pieces - minetest.register_node('homedecor:'..m..'_table_large_b', { + minetest.register_node('homedecor:'..m..'_table_large', { description = S(d.." Table Piece (large)"), drawtype = 'nodebox', tiles = { @@ -237,8 +76,8 @@ for i in ipairs(materials) do 'homedecor_'..m..'_table_large_edges.png', 'homedecor_'..m..'_table_large_edges.png' }, - wield_image = 'homedecor_'..m..'_table_large_tb.png', - inventory_image = 'homedecor_'..m..'_table_large_tb.png', + wield_image = 'homedecor_'..m..'_table_large_inv.png', + inventory_image = 'homedecor_'..m..'_table_large_inv.png', sunlight_propagates = true, paramtype = 'light', walkable = true, @@ -249,79 +88,56 @@ for i in ipairs(materials) do type = "fixed", fixed = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 }, }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 }, - }, + selection_box = tables_cbox, on_place = minetest.rotate_node }) - minetest.register_node('homedecor:'..m..'_table_large_t', { - description = S(d.." Table Piece (large)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_large_tb.png', - 'homedecor_'..m..'_table_large_tb.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png' - }, - wield_image = 'homedecor_'..m..'_table_large_tb.png', - inventory_image = 'homedecor_'..m..'_table_large_tb.png', - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { -0.5, 0.4375, -0.5, 0.5, 0.5, 0.5 }, - }, - selection_box = { - type = "fixed", - fixed = { -0.5, 0.4375, -0.5, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_large_b' - }) - - minetest.register_node('homedecor:'..m..'_table_large_s', { - description = S(d.." Table Piece (large)"), - drawtype = 'nodebox', - tiles = { - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_edges.png', - 'homedecor_'..m..'_table_large_tb.png', - 'homedecor_'..m..'_table_large_tb.png', - }, - wield_image = 'homedecor_'..m..'_table_large_tb.png', - inventory_image = 'homedecor_'..m..'_table_large_tb.png', - sunlight_propagates = true, - paramtype = 'light', - walkable = true, - groups = { snappy = 3, not_in_creative_inventory=1 }, - sounds = s, - paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { -0.5, -0.5, 0.4375, 0.5, 0.5, 0.5 }, - }, - selection_box = { - type = "fixed", - fixed = { -0.5, -0.5, 0.4375, 0.5, 0.5, 0.5 }, - }, - drop = 'homedecor:'..m..'_table_large_b' - }) - - minetest.register_alias('homedecor:'..m..'_table_large', 'homedecor:'..m..'_table_large_b') - minetest.register_alias('homedecor:'..m..'_table_small_square', 'homedecor:'..m..'_table_small_square_b') - minetest.register_alias('homedecor:'..m..'_table_small_round', 'homedecor:'..m..'_table_small_round_b') + minetest.register_alias('homedecor:'..m..'_table_large_b', 'homedecor:'..m..'_table_large') + minetest.register_alias('homedecor:'..m..'_table_small_square_b', 'homedecor:'..m..'_table_small_square') + minetest.register_alias('homedecor:'..m..'_table_small_round_b', 'homedecor:'..m..'_table_small_round') end +-- conversion routines for old non-6dfacedir tables + +local tlist_s = {} +local tlist_t = {} +local dirs2 = { 9, 18, 7, 12 } + +for i in ipairs(materials) do + local m = materials[i][1] + table.insert(tlist_s, "homedecor:"..m.."_table_large_s") + table.insert(tlist_s, "homedecor:"..m.."_table_small_square_s") + table.insert(tlist_s, "homedecor:"..m.."_table_small_round_s") + + table.insert(tlist_t, "homedecor:"..m.."_table_large_t") + table.insert(tlist_t, "homedecor:"..m.."_table_small_square_t") + table.insert(tlist_t, "homedecor:"..m.."_table_small_round_t") +end + +minetest.register_abm({ + nodenames = tlist_s, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local newnode = string.sub(node.name, 1, -3) -- strip the "_s" from the name + local fdir = node.param2 or 0 + minetest.add_node(pos, {name = newnode, param2 = dirs2[fdir+1]}) + end +}) + +minetest.register_abm({ + nodenames = tlist_t, + interval = 1, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local newnode = string.sub(node.name, 1, -3) -- strip the "_t" from the name + minetest.set_node(pos, { name = newnode, param2 = 20 }) + end +}) + +-- other tables + minetest.register_node('homedecor:utility_table_top', { description = S("Utility Table"), tiles = { @@ -412,11 +228,11 @@ minetest.register_node("homedecor:desk", { drawtype = "nodebox", description = "Desk", tiles = { - "homedecor_desk_top_l.png", - "homedecor_desk_bottom_l.png", - "homedecor_desk_rside_l.png", - "homedecor_desk_lside_l.png", - "homedecor_desk_back_l.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png", "homedecor_desk_front_l.png" }, inventory_image = "homedecor_desk_inv.png", @@ -454,10 +270,10 @@ minetest.register_node("homedecor:desk", { minetest.register_node("homedecor:desk_r", { drawtype = "nodebox", tiles = { - "homedecor_desk_top_r.png", - "homedecor_desk_bottom_r.png", - "homedecor_desk_rside_r.png", - "homedecor_desk_lside_r.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png", + "forniture_wood.png", "homedecor_desk_back_r.png", "homedecor_desk_front_r.png" }, diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_back.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_back.png deleted file mode 100755 index 7535173e..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_bottom.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_bottom.png deleted file mode 100755 index 8f708e58..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_front.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_front.png deleted file mode 100755 index 6a18aea8..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_left.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_left.png deleted file mode 100755 index fa713327..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_right.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_right.png deleted file mode 100755 index 897560b1..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_top.png b/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_top.png deleted file mode 100755 index f9082b1a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/3dbookshelf_openframe_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_chains.png b/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_chains.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_shower_head.png b/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_shower_head.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_sink.png b/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_sink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_taps.png b/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_taps.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_torch_wall.png b/mods/homedecor_modpack/homedecor/textures/3dforniture_inv_torch_wall.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat1_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_lat2_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_armchair_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_black_metal.png b/mods/homedecor_modpack/homedecor/textures/forniture_black_metal.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_back_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_front_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_sides_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_black.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_blue.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_dark_green.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_dark_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_pink.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_red.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_violet.png b/mods/homedecor_modpack/homedecor/textures/forniture_kitchen_chair_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_marble.png b/mods/homedecor_modpack/homedecor/textures/forniture_marble.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_marble_base_ducha_top.png b/mods/homedecor_modpack/homedecor/textures/forniture_marble_base_ducha_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_marble_top_sink.png b/mods/homedecor_modpack/homedecor/textures/forniture_marble_top_sink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_marble_top_toilet.png b/mods/homedecor_modpack/homedecor/textures/forniture_marble_top_toilet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_metal.png b/mods/homedecor_modpack/homedecor/textures/forniture_metal.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_papyrus.png b/mods/homedecor_modpack/homedecor/textures/forniture_papyrus.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_papyrus_s1.png b/mods/homedecor_modpack/homedecor/textures/forniture_papyrus_s1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_papyrus_s2.png b/mods/homedecor_modpack/homedecor/textures/forniture_papyrus_s2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_l.png deleted file mode 100755 index d7718918..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lh.png deleted file mode 100755 index 63e14290..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_ll.png deleted file mode 100755 index 84f1b0e8..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lm.png deleted file mode 100755 index 332a3041..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lx.png deleted file mode 100755 index c68d883d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_blue_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_l.png deleted file mode 100755 index 1603938e..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lh.png deleted file mode 100755 index e90b2453..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_ll.png deleted file mode 100755 index acae6991..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lm.png deleted file mode 100755 index c4657e9d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lx.png deleted file mode 100755 index f6470548..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_green_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_l.png deleted file mode 100755 index c6a4fd43..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lh.png deleted file mode 100755 index 77efa615..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_ll.png deleted file mode 100755 index a82b00b9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lm.png deleted file mode 100755 index 028d6514..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lx.png deleted file mode 100755 index 6d3d4a8b..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_l.png deleted file mode 100755 index f5ab7b3a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lh.png deleted file mode 100755 index 576cfae0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_ll.png deleted file mode 100755 index 1a937622..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lm.png deleted file mode 100755 index 35993418..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lx.png deleted file mode 100755 index fbebd045..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_pink_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_l.png deleted file mode 100755 index 450b19a2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lh.png deleted file mode 100755 index 0c5e5deb..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_ll.png deleted file mode 100755 index 5273e92f..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lm.png deleted file mode 100755 index b3da888d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lx.png deleted file mode 100755 index 7746c4b6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_red_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_l.png deleted file mode 100755 index 42c0fa4c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lh.png deleted file mode 100755 index 178e0a78..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_ll.png deleted file mode 100755 index 11ca0fa9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lm.png deleted file mode 100755 index 3bf36ae6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lx.png deleted file mode 100755 index 438e44de..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_standing_lamp_violet_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_l.png deleted file mode 100755 index de8b5ada..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lh.png deleted file mode 100755 index cc5eda27..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_ll.png deleted file mode 100755 index b4e45655..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lm.png deleted file mode 100755 index e4749656..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lx.png deleted file mode 100755 index 9810dd79..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_blue_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_l.png deleted file mode 100755 index bbcd5604..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lh.png deleted file mode 100755 index 3edc6a4f..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_ll.png deleted file mode 100755 index b1202875..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lm.png deleted file mode 100755 index 1974d181..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lx.png deleted file mode 100755 index dc4c574f..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_green_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_l.png deleted file mode 100755 index 96211d50..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lh.png deleted file mode 100755 index f96ab6ee..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_ll.png deleted file mode 100755 index 1b642e84..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lm.png deleted file mode 100755 index 3ce02c94..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lx.png deleted file mode 100755 index a3f932e9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_l.png deleted file mode 100755 index 491aed75..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lh.png deleted file mode 100755 index b64a4c6f..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_ll.png deleted file mode 100755 index 107b55fe..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lm.png deleted file mode 100755 index d9b103c2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lx.png deleted file mode 100755 index 0c274750..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_pink_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_l.png deleted file mode 100755 index 6eb894bf..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lh.png deleted file mode 100755 index 7b5daa12..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_ll.png deleted file mode 100755 index 3ef66970..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lm.png deleted file mode 100755 index 6a4b1e5a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lx.png deleted file mode 100755 index 92698276..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_red_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_s.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_s.png deleted file mode 100755 index 281869f8..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_s.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sh.png deleted file mode 100755 index 1566d635..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sl.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sl.png deleted file mode 100755 index f2e0f9d8..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sl.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sm.png deleted file mode 100755 index 19966dfd..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sx.png deleted file mode 100755 index 9afb916c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_sx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_l.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_l.png deleted file mode 100755 index 23d5c48c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lh.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lh.png deleted file mode 100755 index d0d205f1..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lh.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_ll.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_ll.png deleted file mode 100755 index 06daa7d6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_ll.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lm.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lm.png deleted file mode 100755 index e746ee20..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lm.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lx.png b/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lx.png deleted file mode 100755 index 9887f7c2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/forniture_table_lamp_violet_lx.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_anim.png b/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_anim.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_i.png b/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_i.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_s.png b/mods/homedecor_modpack/homedecor/textures/forniture_torch_wall_s.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_wood.png b/mods/homedecor_modpack/homedecor/textures/forniture_wood.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_wood_mahogany.png b/mods/homedecor_modpack/homedecor/textures/forniture_wood_mahogany.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/forniture_wood_white.png b/mods/homedecor_modpack/homedecor/textures/forniture_wood_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ac_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ac_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ac_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ac_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ac_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ac_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ac_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ac_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_alarm_clock_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_back.png deleted file mode 100755 index 92761cc3..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_edges.png deleted file mode 100755 index 9cda9c35..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_front.png deleted file mode 100755 index 17d82ab0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_inv.png old mode 100755 new mode 100644 index f1b360b5..d06bf4ff Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_plastic_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_back.png deleted file mode 100755 index 0f7ea8fd..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_edges.png deleted file mode 100755 index 3920796f..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_front.png deleted file mode 100755 index 2094c5bf..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_inv.png old mode 100755 new mode 100644 index b115fade..267abc6f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_analog_clock_wood_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_meat.png b/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_meat.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_top.png old mode 100755 new mode 100644 index f300b929..fb38f67c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_barbecue_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_3.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_4.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_4.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_blue.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_green.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_red.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_tan.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_tan.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_yellow.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bathroom_tiles_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1.png old mode 100755 new mode 100644 index 8c461a46..91331503 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1ext.png old mode 100755 new mode 100644 index 26ae73ca..ced2d21e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_head2.png old mode 100755 new mode 100644 index fb1bd49f..15dcc659 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_inv.png old mode 100755 new mode 100644 index 5179254d..80dccf30 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side1.png old mode 100755 new mode 100644 index d15abab5..140695f0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2.png old mode 100755 new mode 100644 index 46c0376d..cf9dd9a7 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2ext.png old mode 100755 new mode 100644 index f023a076..852f1d5f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top1.png old mode 100755 new mode 100644 index 2d470d72..eb2b6416 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top2.png old mode 100755 new mode 100644 index 5f9a729a..317eca60 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_blue_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom1.png old mode 100755 new mode 100644 index 0de90df1..1fdc017f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom2.png old mode 100755 new mode 100644 index 0366882b..7c966bdf Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_bottom2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1.png old mode 100755 new mode 100644 index f6231e8a..36c011c5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1ext.png old mode 100755 new mode 100644 index 5ccb72a6..f4bf9b95 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_head2.png old mode 100755 new mode 100644 index d5e9306c..35242b5c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_inv.png old mode 100755 new mode 100644 index 5171ee20..e3e324f1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2.png old mode 100755 new mode 100644 index cd78cf7f..92471902 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2ext.png old mode 100755 new mode 100644 index a03189af..3df548db Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top1.png old mode 100755 new mode 100644 index 6055a460..80bffcb2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top2.png old mode 100755 new mode 100644 index 4450cbec..2ccf599c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_brown_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1.png old mode 100755 new mode 100644 index 22a5b0f8..97d2645c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1ext.png old mode 100755 new mode 100644 index ef4cde3a..2bc65786 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_head2.png old mode 100755 new mode 100644 index 3b7f4e04..6cd9a0e1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_inv.png old mode 100755 new mode 100644 index db10cc30..dad4d492 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side1.png old mode 100755 new mode 100644 index 90f78ecf..e27e344a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2.png old mode 100755 new mode 100644 index 8438a851..c59f6bf2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2ext.png old mode 100755 new mode 100644 index 84167145..39a54c30 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top1.png old mode 100755 new mode 100644 index 7a824bcd..f244115c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top2.png old mode 100755 new mode 100644 index 0584b251..1c72aede Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_darkgrey_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2.png old mode 100755 new mode 100644 index f8da3f03..5ff349b9 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2ext.png old mode 100755 new mode 100644 index 1afeb97a..906a3020 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_foot2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1.png old mode 100755 new mode 100644 index ecaaf347..2433b8c4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1ext.png old mode 100755 new mode 100644 index 7f8358e6..51c10e1a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_head2.png old mode 100755 new mode 100644 index 1fd943e1..ccd176c8 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_inv.png old mode 100755 new mode 100644 index 069b45b2..a6f32dbd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side1.png old mode 100755 new mode 100644 index 26839c2b..a068ddba Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2.png old mode 100755 new mode 100644 index 80dbc3fe..3143b567 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2ext.png old mode 100755 new mode 100644 index 9e87c478..12927a1c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top1.png old mode 100755 new mode 100644 index f97f89da..e57abac1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top2.png old mode 100755 new mode 100644 index 96a7a0ed..f57d2bb3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_green_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_head1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_head1.png old mode 100755 new mode 100644 index 334aaa4e..e80496fd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_head1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_head1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1.png old mode 100755 new mode 100644 index 44dc9f6e..4ba7d6fc Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1ext.png old mode 100755 new mode 100644 index 15ad22d9..dbfa1c5e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_head2.png old mode 100755 new mode 100644 index 95658e9b..8742ba26 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_inv.png old mode 100755 new mode 100644 index 13a00d50..a0832692 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side1.png old mode 100755 new mode 100644 index cdb2c2d9..7777c3f2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2.png old mode 100755 new mode 100644 index 37b34fe9..2168e967 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2ext.png old mode 100755 new mode 100644 index bcd1e962..57fe16e2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top1.png old mode 100755 new mode 100644 index 977b113b..4f02c140 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top2.png old mode 100755 new mode 100644 index c58b89a9..3286f7e4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_orange_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1.png old mode 100755 new mode 100644 index fe135106..56cb6d40 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1ext.png old mode 100755 new mode 100644 index 92f65951..d7943075 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_head2.png old mode 100755 new mode 100644 index 0d82955b..d3e3d076 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_inv.png old mode 100755 new mode 100644 index 8bb75daa..b6f33ecf Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side1.png old mode 100755 new mode 100644 index cc459310..866d6719 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2.png old mode 100755 new mode 100644 index fd437132..7a072ab6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2ext.png old mode 100755 new mode 100644 index cb5bde04..a1fb820e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top1.png old mode 100755 new mode 100644 index c49200fa..09774c5b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top2.png old mode 100755 new mode 100644 index 225d443b..76e13df1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_pink_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1.png old mode 100755 new mode 100644 index 1e3a8f4a..39e9dd95 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1ext.png old mode 100755 new mode 100644 index d62fe469..51370fab Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_head2.png old mode 100755 new mode 100644 index e8cf8a20..d30a3b3e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_inv.png old mode 100755 new mode 100644 index 7e5a4f37..bb0c00fd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side1.png old mode 100755 new mode 100644 index 50880188..d744e0e1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2.png old mode 100755 new mode 100644 index 4f192f0b..132a2b54 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2ext.png old mode 100755 new mode 100644 index 927e19a6..6022e11a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top1.png old mode 100755 new mode 100644 index 40d34b97..e7729ab2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top2.png old mode 100755 new mode 100644 index b0563576..5fb4eae0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_red_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1.png old mode 100755 new mode 100644 index 4267958b..706436fe Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1ext.png old mode 100755 new mode 100644 index 5169b9f9..c46a2c61 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_head2.png old mode 100755 new mode 100644 index b02590f9..dd42a9ea Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_inv.png old mode 100755 new mode 100644 index f9ec5144..23e74c72 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side1.png old mode 100755 new mode 100644 index de24c8e1..fe7a1e5f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2.png old mode 100755 new mode 100644 index 2681fc99..3d1a8ac3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2ext.png old mode 100755 new mode 100644 index cc1bff3b..84f0585d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top1.png old mode 100755 new mode 100644 index 890b14e3..c3f36442 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top2.png old mode 100755 new mode 100644 index 161896ea..c8accb41 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_violet_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1.png old mode 100755 new mode 100644 index 33483885..92543d5a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1ext.png old mode 100755 new mode 100644 index fd27b689..0578713b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_foot1ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_head2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_head2.png old mode 100755 new mode 100644 index f8f5917b..1cb34876 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_head2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_head2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_inv.png old mode 100755 new mode 100644 index efdb6428..7da1c5a6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side1.png old mode 100755 new mode 100644 index fcb982af..349621de Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2.png old mode 100755 new mode 100644 index cd8df8f9..9be30083 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2ext.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2ext.png old mode 100755 new mode 100644 index c47b6fba..56d05d20 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2ext.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_side2ext.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top1.png old mode 100755 new mode 100644 index 5faffe8d..86dd0b81 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top2.png old mode 100755 new mode 100644 index bfb40b32..58ed4826 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bed_yellow_top2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_back.png deleted file mode 100755 index 8b5add66..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_bottom.png old mode 100755 new mode 100644 index 850b3a6e..e5e1fa4b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_front.png old mode 100755 new mode 100644 index 853cf582..2d092e9e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_inv.png old mode 100755 new mode 100644 index 89e69deb..3aa9ccc6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_left.png deleted file mode 100755 index 5df7b468..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_right.png old mode 100755 new mode 100644 index 00a701b7..8ffc2edc Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_top.png old mode 100755 new mode 100644 index 7943b599..d4c39148 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beer_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beer_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_left.png deleted file mode 100755 index e5e51c86..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_right.png old mode 100755 new mode 100644 index 07aacfac..0c7a8e64 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_beertap_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_ends.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_ends.png old mode 100755 new mode 100644 index 1264c39e..c70259fa Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_ends.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_ends.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_inv.png old mode 100755 new mode 100644 index 347c6816..20d3b00e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_front.png old mode 100755 new mode 100644 index a33bc58f..6288a0e3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_top.png old mode 100755 new mode 100644 index 01e7a147..0c86fe9a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_left_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_back.png deleted file mode 100755 index 518c78bd..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_bottom.png deleted file mode 100755 index 6940536b..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_front.png deleted file mode 100755 index 2a70270a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_top.png deleted file mode 100755 index 3f8a3364..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_1_right_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_inv.png old mode 100755 new mode 100644 index 61dd7c14..6a0df971 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_back.png old mode 100755 new mode 100644 index 975c63d2..6f319169 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_back.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_back.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_front.png deleted file mode 100755 index f68483f2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_left_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_right_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_right_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_right_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_right_front.png deleted file mode 100755 index f500f9de..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bench_large_2_right_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_blank_canvas.png b/mods/homedecor_modpack/homedecor/textures/homedecor_blank_canvas.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_blanktile.png b/mods/homedecor_modpack/homedecor/textures/homedecor_blanktile.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_back.png old mode 100755 new mode 100644 index c5c2ff90..66e2c464 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_back.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_back.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_bottom.png old mode 100755 new mode 100644 index a04f6736..90a9ad4f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_inv.png old mode 100755 new mode 100644 index 6ecb297f..9828ae55 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_left.png deleted file mode 100755 index ca5cbb20..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_top.png old mode 100755 new mode 100644 index 0e0a0f59..e5589d48 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_blue_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_front.png deleted file mode 100755 index ac8c0f2c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_bottom.png old mode 100755 new mode 100644 index b62b1e0d..69b6a4a5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_inv.png old mode 100755 new mode 100644 index aeadf9fb..35fe9344 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_left.png deleted file mode 100755 index 034bfbf2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_top.png old mode 100755 new mode 100644 index 1256ab5c..3d3a6d97 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_green_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_blue_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_blue_bottom.png old mode 100755 new mode 100644 index 7b5b7e93..01ca62ea Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_blue_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_blue_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_green_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_green_bottom.png old mode 100755 new mode 100644 index 8159c9f9..3c0e7946 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_green_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_green_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_red_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_red_bottom.png old mode 100755 new mode 100644 index 4ec57384..ae630636 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_red_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_red_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_sides.png old mode 100755 new mode 100644 index 84317ca6..d9c231ec Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_top.png old mode 100755 new mode 100644 index ef9b085c..bfe4323b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_open_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_bottom.png old mode 100755 new mode 100644 index d1e552f3..041aa3ab Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_inv.png old mode 100755 new mode 100644 index e5eb68e9..73bf9d55 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_left.png deleted file mode 100755 index c2425c35..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_top.png old mode 100755 new mode 100644 index 0262502d..fda00505 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_red_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_book_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_book_right.png old mode 100755 new mode 100644 index ee6358ba..52c500ac Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_book_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_book_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_inv.png old mode 100755 new mode 100644 index 6c96f6ee..aff22d04 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_sides.png deleted file mode 100755 index 66e42787..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_top.png deleted file mode 100755 index 16f0a84d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_brown_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_inv.png old mode 100755 new mode 100644 index dee38843..eedf7c98 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_sides.png deleted file mode 100755 index 448a5c0a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_top.png deleted file mode 100755 index 192d19e0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bottle_green_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_brass_ingot.png b/mods/homedecor_modpack/homedecor/textures/homedecor_brass_ingot.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_bright_metal.png b/mods/homedecor_modpack/homedecor/textures/homedecor_bright_metal.png old mode 100755 new mode 100644 index 20bef6f6..dfb17721 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_bright_metal.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_bright_metal.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_calendar.png b/mods/homedecor_modpack/homedecor/textures/homedecor_calendar.png old mode 100755 new mode 100644 index d35a870d..64ebb8ab Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_calendar.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_calendar.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_candle.png b/mods/homedecor_modpack/homedecor/textures/homedecor_candle.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_candle_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_candle_bottom.png deleted file mode 100755 index cfeeb579..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_candle_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_candle_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_candle_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_candle_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_candle_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_candle_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_candle_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cardboard_box_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_bottom.png old mode 100755 new mode 100644 index 04434a66..04a333b0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_inv.png old mode 100755 new mode 100644 index fff00e4c..f887b385 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_sides.png old mode 100755 new mode 100644 index 272b7066..82bae2f9 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_top.png old mode 100755 new mode 100644 index 54819a2f..13626095 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_fan_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_paint.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_paint.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_paint_roller.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_paint_roller.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_tile.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ceiling_tile.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_brass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_brass.png old mode 100755 new mode 100644 index a5f323e1..29984116 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_brass.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_brass.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_steel.png b/mods/homedecor_modpack/homedecor/textures/homedecor_chainlink_steel.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_chimney_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wallmount_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wallmount_inv.png old mode 100755 new mode 100644 index f0868ad1..8d776a31 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wallmount_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wallmount_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wood.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wood.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coatrack_wood.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb.png old mode 100755 new mode 100644 index 2bb58a51..e6501327 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_inv.png old mode 100755 new mode 100644 index 2bb58a51..e6501327 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_plantlike.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_plantlike.png old mode 100755 new mode 100644 index 9cce2a22..1002c6ac Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_plantlike.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_plantlike.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_torchlike.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_torchlike.png old mode 100755 new mode 100644 index 4f1d12dc..636237a6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_torchlike.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cobweb_torchlike.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_back.png old mode 100755 new mode 100644 index fd8b1517..c702e768 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_back.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_back.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_bottom.png old mode 100755 new mode 100644 index 0d404933..5c49f4c6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_front.png old mode 100755 new mode 100644 index 87ff4407..a1142f3c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_inv.png old mode 100755 new mode 100644 index 7db60435..55d7191f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_left.png deleted file mode 100755 index 17e1c502..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_right.png old mode 100755 new mode 100644 index afe3f277..cf0416b7 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_top.png old mode 100755 new mode 100644 index 010b1bb9..921558f2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_coffeemaker_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_copper_pans_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_copper_pans_inv.png old mode 100755 new mode 100644 index c0fcd74e..cf3c4a4e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_copper_pans_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_copper_pans_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_copper_strip.png b/mods/homedecor_modpack/homedecor/textures/homedecor_copper_strip.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_copper_wire.png b/mods/homedecor_modpack/homedecor/textures/homedecor_copper_wire.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_blue.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_blue.png old mode 100755 new mode 100644 index 0783cae5..eab2ed60 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_blue.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_blue.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_green.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_green.png old mode 100755 new mode 100644 index e98bc618..05debd85 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_green.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_green.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_blue.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_blue.png old mode 100755 new mode 100644 index 3cd4c556..ceaab8ea Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_blue.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_blue.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_green.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_green.png old mode 100755 new mode 100644 index 4be8adcf..a149844a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_green.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_green.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_pink.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_pink.png old mode 100755 new mode 100644 index b601c182..5074bea1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_pink.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_pink.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_red.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_red.png old mode 100755 new mode 100644 index 32561433..a62eb0b1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_red.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_red.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_violet.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_violet.png old mode 100755 new mode 100644 index ad3bbc7f..c51a04df Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_violet.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_violet.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_white.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_white.png old mode 100755 new mode 100644 index 85b07c2b..acfecbd4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_white.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_open_white.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_pink.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_pink.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_red.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_red.png old mode 100755 new mode 100644 index 72c8c0a9..779050f0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_red.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_red.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_violet.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_violet.png old mode 100755 new mode 100644 index 333121bd..3b3cfc79 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_violet.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_violet.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_white.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_white.png old mode 100755 new mode 100644 index c2c22dcf..b9e251c6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_white.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtain_white.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_brass_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_brass_inv.png old mode 100755 new mode 100644 index 2ce1622e..dde0607a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_brass_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_brass_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wood_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wood_inv.png old mode 100755 new mode 100644 index 739ce857..5712d36a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wood_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wood_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wrought_iron_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wrought_iron_inv.png old mode 100755 new mode 100644 index 1c8fcd5e..010f0384 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wrought_iron_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_curtainrod_wrought_iron_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_bottom.png deleted file mode 100755 index 6cb658d6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_inv.png old mode 100755 new mode 100644 index 9c668e58..129421ca Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_sides.png old mode 100755 new mode 100644 index c27c7e59..e62268d1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_top.png old mode 100755 new mode 100644 index a2a99e1c..16393b2e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_cutlery_set_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dartboard.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dartboard.png old mode 100755 new mode 100644 index ba5117bb..dd3a1009 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_dartboard.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_dartboard.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_back.png deleted file mode 100755 index 7657666b..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_bottom.png deleted file mode 100755 index d70ab9cc..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_inv.png old mode 100755 new mode 100644 index 1f67b57a..76fa1cc0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_sides.png old mode 100755 new mode 100644 index b1f6ede2..8e002196 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_top_c1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_top_c1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_top_c2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_deckchair_top_c2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_back_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_back_l.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_back_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_back_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_back_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_l.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_r.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_bottom_r.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_fan_body.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_fan_body.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_fan_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_fan_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_front_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_front_l.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_front_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_front_r.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_l.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_r.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_lside_r.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_l.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_r.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_rside_r.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_l.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_l.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_l.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_r.png b/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_r.png deleted file mode 100755 index 7e44cea5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_desk_top_r.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_edges.png old mode 100755 new mode 100644 index 692287a4..7bc3b2e4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_edges.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_edges.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_digital_clock_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dishwasher_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_back.png deleted file mode 100755 index e8841f7a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_base_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_back.png deleted file mode 100755 index fa1bf1ed..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doghouse_roof_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_bottom.png old mode 100755 new mode 100644 index e473d817..24ad7bc4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_inv.png old mode 100755 new mode 100644 index bbebaed4..81555e34 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_top.png old mode 100755 new mode 100644 index f2edbab2..6226b2ac Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_left_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrb.png old mode 100755 new mode 100644 index bac3772a..c4283f64 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrt.png old mode 100755 new mode 100644 index 06d517f0..99674902 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrt.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_lrt.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_bottom.png old mode 100755 new mode 100644 index ae781744..6eeec329 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_inv.png deleted file mode 100755 index 086811b0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_top.png old mode 100755 new mode 100644 index 6596461c..c5f28e49 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_right_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_tb.png old mode 100755 new mode 100644 index 9b7cdfe2..c2d071e5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_bedroom_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_inv.png deleted file mode 100755 index b2324d15..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_mahogany_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_inv.png deleted file mode 100755 index dd1ec069..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_closet_oak_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_inv.png deleted file mode 100755 index 78e28dd0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_exterior_fancy_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_bottom_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_bottom_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_bottom_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_bottom_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_inv.png deleted file mode 100755 index 716ae2f3..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_top_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_top_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_top_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_glass_top_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_inv.png deleted file mode 100755 index f9e118fb..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_mahogany_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_inv.png deleted file mode 100755 index b068b58d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_inv.png deleted file mode 100755 index 96557355..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_glass_white_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_left_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_inv.png deleted file mode 100755 index b1bbd964..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_right_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wood_plain_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_inv.png old mode 100755 new mode 100644 index 15a97978..df93069b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_top.png old mode 100755 new mode 100644 index 01970e6a..b9c8a18c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_left_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_lrb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_lrt.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_bottom.png old mode 100755 new mode 100644 index 7b9c0895..538da95b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_top.png old mode 100755 new mode 100644 index 0f311471..3591e02c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_right_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_woodglass_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_bottom.png old mode 100755 new mode 100644 index 2a1e681f..27a8cd47 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_inv.png old mode 100755 new mode 100644 index 9fbd6f46..1ee1ed54 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_top.png old mode 100755 new mode 100644 index 6cfca1e8..6daac97d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_left_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrb.png old mode 100755 new mode 100644 index 136d0b14..cc55a903 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrt.png old mode 100755 new mode 100644 index 50662c75..a23f6404 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrt.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_lrt.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_bottom.png old mode 100755 new mode 100644 index e45bc192..e5ba5a2c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_inv.png deleted file mode 100755 index 7b4b2700..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_top.png old mode 100755 new mode 100644 index 1a7b045c..dc30d38a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_right_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_tb.png old mode 100755 new mode 100644 index 09de596e..3561b293 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_door_wrought_iron_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell.png old mode 100755 new mode 100644 index 2c028d97..4fd9a61d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell_inv.png old mode 100755 new mode 100644 index 99cdd15f..1542747f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_doorbell_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_drawer_small.png b/mods/homedecor_modpack/homedecor/textures/homedecor_drawer_small.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dryer_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvd_player.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvd_player.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_bottom.png deleted file mode 100755 index b39923d6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_top.png old mode 100755 new mode 100644 index 15f3423a..78989e4e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdcd_cabinet_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_bottom.png old mode 100755 new mode 100644 index 839bd9ef..a3cf3ac3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_dvdvcr_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fan_blades.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fan_blades.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_barbed_wire.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_barbed_wire.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_brass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_brass.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_back.png deleted file mode 100755 index 74ba14c0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_bottom.png deleted file mode 100755 index fa357f93..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_left.png deleted file mode 100755 index 74ba14c0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_right.png deleted file mode 100755 index 74ba14c0..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_corner_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_fb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_fb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_chainlink_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_fb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_fb.png old mode 100755 new mode 100644 index 6170fb5d..6cbefe26 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_fb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_fb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_lr.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_lr.png old mode 100755 new mode 100644 index 8d8bc348..cf110636 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_lr.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_lr.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_tb.png old mode 100755 new mode 100644 index 74fccd43..12db7a5f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_corner_wrought_iron_2_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_backside.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_backside.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_white.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_white_backside.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_picket_white_backside.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_backside.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_backside.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_backside2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_backside2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_corner_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_privacy_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_fb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_fb.png old mode 100755 new mode 100644 index 9a26288a..529916d2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_fb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_fb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_sides.png old mode 100755 new mode 100644 index 50662c75..a23f6404 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_tb.png old mode 100755 new mode 100644 index 09de596e..3561b293 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_fence_wrought_iron_2_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_back.png deleted file mode 100755 index c6c0fcf5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_sides.png deleted file mode 100755 index dda03d15..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_top.png deleted file mode 100755 index a7257d46..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_filing_cabinet_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_back_lighted.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_back_lighted.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_front_lighted.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_front_lighted.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_left_lighted.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_left_lighted.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_right_lighted.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_right_lighted.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_fishtank_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_bottom.png deleted file mode 100755 index ca96c9fd..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_sides.png deleted file mode 100755 index 88f56e6c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_top.png deleted file mode 100755 index dc7e02c6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_black_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_bottom.png deleted file mode 100755 index e13e99fc..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_sides.png deleted file mode 100755 index 20de089d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_top.png deleted file mode 100755 index db2a5c65..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_green_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_bottom.png deleted file mode 100755 index 0c86c2a5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_sides.png deleted file mode 100755 index 8f786f74..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_top.png deleted file mode 100755 index 78238b25..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flower_pot_terracotta_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_bottom.png old mode 100755 new mode 100644 index af1c27df..665cdc6f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_inv.png old mode 100755 new mode 100644 index 31226c59..7a5cfee4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_sides.png old mode 100755 new mode 100644 index 4792f011..414afada Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_top.png old mode 100755 new mode 100644 index 06620aaf..11ade607 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_flowerbox_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_barbed_wire_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_chainlink_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gate_picket_white_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_generic_wood.png b/mods/homedecor_modpack/homedecor/textures/homedecor_generic_wood.png old mode 100755 new mode 100644 index 85a344c3..01118905 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_generic_wood.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_generic_wood.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_face_clean.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_face_clean.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_tb.png old mode 100755 new mode 100644 index 8cf953ca..5862450c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_large_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_edges.png deleted file mode 100755 index 29cc270c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_tb.png deleted file mode 100755 index 68b813b3..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_round_tb.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_edges.png deleted file mode 100755 index 29cc270c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_tb.png deleted file mode 100755 index c4119f66..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_glass_table_small_square_tb.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_sides_ceiling.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_sides_ceiling.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_white_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_sides_ceiling.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_sides_ceiling.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_cube_yellow_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_white_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_white_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_white_wall_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_white_wall_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_yellow_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_yellow_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_yellow_wall_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thick_yellow_wall_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_white_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_white_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_white_wall_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_white_wall_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_yellow_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_yellow_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_yellow_wall_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_thin_yellow_wall_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_white_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_white_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_white_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_white_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_yellow_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_yellow_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_yellow_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_glowlight_yellow_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_gold_block.png b/mods/homedecor_modpack/homedecor/textures/homedecor_gold_block.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_bottom.png old mode 100755 new mode 100644 index 55ffe5f8..c15a59aa Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_inv.png old mode 100755 new mode 100644 index 84f9ed98..ae9bf13b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_sides.png old mode 100755 new mode 100644 index 27a5f791..786e4982 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_top.png old mode 100755 new mode 100644 index 1783c46d..6b6dd5f2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_grandfather_clock_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heater_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heater_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heater_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heater_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heater_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heater_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heater_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heater_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heater_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heater_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_heating_element.png b/mods/homedecor_modpack/homedecor/textures/homedecor_heating_element.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_ic.png b/mods/homedecor_modpack/homedecor/textures/homedecor_ic.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_bottom.png old mode 100755 new mode 100644 index b5bf5567..3a657c96 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_door_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_middle.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_middle.png old mode 100755 new mode 100644 index 96dcae98..f6a6bd3e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_middle.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_middle.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_japanese_wall_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_jpn_door_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_jpn_door_inv.png old mode 100755 new mode 100644 index 9e6a2766..189fb58b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_jpn_door_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_jpn_door_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_front_half.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_front_half.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_sinktop.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_sinktop.png deleted file mode 100755 index 7e5666ef..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_sinktop.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_granite.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_granite.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_marble.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_marble.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_steel.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_cabinet_top_steel.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_faucet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_faucet_inv.png old mode 100755 new mode 100644 index a4e9cdd5..43bbc6d6 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_faucet_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_kitchen_faucet_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_large.png b/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_large.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_small_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_small_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_small_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_lattice_lantern_small_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_light_switch_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_front.png old mode 100755 new mode 100644 index de7b249c..8e0e0866 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_right.png old mode 100755 new mode 100644 index 0ef44c29..51641223 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_open_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_medicine_cabinet_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_back.png deleted file mode 100755 index 5d277653..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_back.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_bottom.png deleted file mode 100755 index 2baa0a27..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front.png old mode 100755 new mode 100644 index e9d6dd9d..8d5319bd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front_active.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front_active.png old mode 100755 new mode 100644 index 0682e75f..e438a105 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front_active.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_front_active.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_left.png deleted file mode 100755 index a0605eff..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_left.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_right.png deleted file mode 100755 index b7a86525..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_microwave_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_motor.png b/mods/homedecor_modpack/homedecor/textures/homedecor_motor.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_1_drawer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_1_drawer_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_2_drawer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_2_drawer_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_mahogany_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_1_drawer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_1_drawer_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_2_drawer_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_2_drawer_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_nightstand_oak_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oil_extract.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oil_extract.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oil_lamp.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oil_lamp.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_edges.png old mode 100755 new mode 100644 index 5135dd94..df25a4b4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_edges.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_edges.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_front.png deleted file mode 100755 index c75d9069..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_front.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_outlet_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front.png old mode 100755 new mode 100644 index 8059aedd..0ad45b85 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front_active.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front_active.png old mode 100755 new mode 100644 index 49865274..84e49de8 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front_active.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_front_active.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front.png old mode 100755 new mode 100644 index d94f464c..a5935a98 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front_active.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front_active.png old mode 100755 new mode 100644 index 29fa783c..73d48f5d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front_active.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_front_active.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_steel_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_oven_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_oven_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting10.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting10.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting11.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting11.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting12.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting12.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting13.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting13.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting14.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting14.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting15.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting15.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting16.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting16.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting17.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting17.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting18.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting18.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting19.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting19.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting20.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting20.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting3.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting4.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting4.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting5.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting5.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting6.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting6.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting7.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting7.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting8.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting8.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting9.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting9.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_painting_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_painting_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_ends.png b/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_ends.png deleted file mode 100755 index 6e94efbe..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_ends.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_inv.png old mode 100755 new mode 100644 index 9b7adefd..9a0e6be5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_sides.png deleted file mode 100755 index e84d042c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_paper_towel_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_paraffin.png b/mods/homedecor_modpack/homedecor/textures/homedecor_paraffin.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_left.png old mode 100755 new mode 100644 index ce4de0a7..80f53989 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_left.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_left.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_right.png old mode 100755 new mode 100644 index 735d9e9c..fab82104 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_front_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_inv.png old mode 100755 new mode 100644 index 956c4914..8146d02a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_sides.png old mode 100755 new mode 100644 index ee42a27e..8342daa7 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_left.png old mode 100755 new mode 100644 index 4968db60..a00bc584 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_left.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_left.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_right.png old mode 100755 new mode 100644 index 97a59e2f..440a459e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_piano_top_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_plasma_storm.png b/mods/homedecor_modpack/homedecor/textures/homedecor_plasma_storm.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_plastic_sheeting.png b/mods/homedecor_modpack/homedecor/textures/homedecor_plastic_sheeting.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_plastic_strips.png b/mods/homedecor_modpack/homedecor/textures/homedecor_plastic_strips.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass.png deleted file mode 100755 index 0c0063d5..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass2.png deleted file mode 100755 index b2f807c6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_brass2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_wrought_iron.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pole_wrought_iron.png deleted file mode 100755 index eef82d3e..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pole_wrought_iron.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_polished_copper.png b/mods/homedecor_modpack/homedecor/textures/homedecor_polished_copper.png old mode 100755 new mode 100644 index 1d0d7dca..672abe2f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_polished_copper.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_polished_copper.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom1.png old mode 100755 new mode 100644 index 5251f5d0..ad516814 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom2.png deleted file mode 100755 index cf3c5fe2..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_bottom2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end1.png old mode 100755 new mode 100644 index 7b992354..ee03d82b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end2.png deleted file mode 100755 index 7b992354..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end3.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end3.png deleted file mode 100755 index 7b992354..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end3.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end4.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end4.png deleted file mode 100755 index 7b992354..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_end4.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_inv.png old mode 100755 new mode 100644 index 05e6df29..3797aae5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides1.png old mode 100755 new mode 100644 index 67628e55..f2b9ed4d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides2.png deleted file mode 100755 index b42b3b16..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides3.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides3.png deleted file mode 100755 index 3c73d557..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides3.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides4.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides4.png deleted file mode 100755 index 719455cd..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_sides4.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top1.png old mode 100755 new mode 100644 index 19216fab..a1700e16 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top2.png deleted file mode 100755 index 3d3ff6e1..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_pool_table_top2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_power_crystal.png b/mods/homedecor_modpack/homedecor/textures/homedecor_power_crystal.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_projection_screen.png b/mods/homedecor_modpack/homedecor/textures/homedecor_projection_screen.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_projection_screen_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_projection_screen_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_radiator_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_radiator_inv.png old mode 100755 new mode 100644 index 2ca084ea..d58fa41b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_radiator_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_radiator_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_back1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_back1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_back2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_back2.png deleted file mode 100755 index e3294492..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_back2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front1.png old mode 100755 new mode 100644 index 9799e3d5..73f66d9c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front2.png old mode 100755 new mode 100644 index 90b687e8..fa3c5f40 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_front2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_inv.png old mode 100755 new mode 100644 index f6ec088f..d6502e83 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides1.png old mode 100755 new mode 100644 index 811a6f88..53063002 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides2.png deleted file mode 100755 index 811a6f88..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_sides2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_steel_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_back1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_back1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_back2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_back2.png deleted file mode 100755 index 135eeab7..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_back2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_bottom.png old mode 100755 new mode 100644 index 1dd2013a..e4cc7a60 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front1.png old mode 100755 new mode 100644 index 80179fde..4489b709 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front2.png old mode 100755 new mode 100644 index 747b42c2..301a6a97 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front2.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_front2.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_inv.png old mode 100755 new mode 100644 index a611746a..b6c85def Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides1.png old mode 100755 new mode 100644 index 1f68ea23..b36a605c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides1.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides1.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides2.png deleted file mode 100755 index 1f68ea23..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_sides2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_top.png old mode 100755 new mode 100644 index 7078fa7e..607c02ea Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_refrigerator_white_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_roof_tile_terracotta.png b/mods/homedecor_modpack/homedecor/textures/homedecor_roof_tile_terracotta.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_rug_large.png b/mods/homedecor_modpack/homedecor/textures/homedecor_rug_large.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_rug_small.png b/mods/homedecor_modpack/homedecor/textures/homedecor_rug_small.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt.png old mode 100755 new mode 100644 index 9912a7de..144e1de8 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_t.png deleted file mode 100755 index 9ed80930..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_x.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_x.png deleted file mode 100755 index 34b06641..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_x.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_z.png deleted file mode 100755 index 537760ac..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_c_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_inv.png old mode 100755 new mode 100644 index f1de9b94..1d7fd8a5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_t.png deleted file mode 100755 index 9ed80930..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_z.png deleted file mode 100755 index 537760ac..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_asphalt_s_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass.png old mode 100755 new mode 100644 index cf6b19e6..a2a05d28 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass_top.png deleted file mode 100755 index cf6b19e6..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_glass_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta.png old mode 100755 new mode 100644 index 90c21c12..4dc43a78 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_t.png deleted file mode 100755 index f99e9aae..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_x.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_x.png deleted file mode 100755 index e0403667..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_x.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_z.png deleted file mode 100755 index 69bd47ed..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_c_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_inv.png old mode 100755 new mode 100644 index f5aaa5da..97f198ef Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_t.png deleted file mode 100755 index f99e9aae..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_z.png deleted file mode 100755 index 69bd47ed..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_terracotta_s_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood.png old mode 100755 new mode 100644 index 44ce9758..46781f1b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_t.png deleted file mode 100755 index 44ce9758..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_x.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_x.png deleted file mode 100755 index 3e9d5043..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_x.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_z.png deleted file mode 100755 index 8cc4adb4..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_c_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_inv.png old mode 100755 new mode 100644 index df0e6778..4c2b042c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_t.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_t.png deleted file mode 100755 index 44ce9758..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_t.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_z.png b/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_z.png deleted file mode 100755 index 8cc4adb4..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_shingles_wood_s_z.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_brass_post_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_side.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sign_wrought_iron_post_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_silicon.png b/mods/homedecor_modpack/homedecor/textures/homedecor_silicon.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_bottom.png old mode 100755 new mode 100644 index ea5a229f..fe62b2d9 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_inv.png old mode 100755 new mode 100644 index b3705add..3ecf6cdd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_sides.png old mode 100755 new mode 100644 index 8b0b3163..0f44e2d2 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_top.png old mode 100755 new mode 100644 index b6ccb86f..a3920caa Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_skateboard_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_frosted.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_frosted.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_frosted_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_frosted_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_skylight_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_driver.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_driver.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_right.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_speaker_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_bottom.png old mode 100755 new mode 100644 index 8d68fa06..661a10a8 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_front.png old mode 100755 new mode 100644 index 7593bf8e..6dd49202 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_left.png old mode 100755 new mode 100644 index cc92a5a7..fea9b803 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_left.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_left.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_right.png deleted file mode 100755 index 0e7d5353..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_top.png old mode 100755 new mode 100644 index f75ebb18..9232611b Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_sportbench_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_blue_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_blue_inv.png old mode 100755 new mode 100644 index d552c525..308af995 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_blue_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_blue_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_bottom_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_bottom_sides.png deleted file mode 100755 index e85886f1..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_bottom_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_green_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_green_inv.png old mode 100755 new mode 100644 index 1d7239f9..803ed183 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_green_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_green_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_pink_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_pink_inv.png old mode 100755 new mode 100644 index 822016bd..f6c8b294 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_pink_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_pink_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_red_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_red_inv.png old mode 100755 new mode 100644 index 88b37008..31720200 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_red_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_red_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_violet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_violet_inv.png old mode 100755 new mode 100644 index 659606f6..8c14458d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_violet_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_violet_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_white_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_white_inv.png deleted file mode 100755 index 0c7114ab..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_standing_lamp_white_inv.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_steel_strip.png b/mods/homedecor_modpack/homedecor/textures/homedecor_steel_strip.png old mode 100755 new mode 100644 index c8c85160..6384dc83 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_steel_strip.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_steel_strip.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_steel_wire.png b/mods/homedecor_modpack/homedecor/textures/homedecor_steel_wire.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_right.png deleted file mode 100755 index 7863417c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stereo_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_stonepath_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_stonepath_inv.png old mode 100755 new mode 100644 index 73804cdf..e5f3123e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_stonepath_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_stonepath_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_bottom.png deleted file mode 100755 index 68d30b0a..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_inv.png old mode 100755 new mode 100644 index 295c34c2..e10cf785 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_sides.png deleted file mode 100755 index 1a82832b..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_top.png old mode 100755 new mode 100644 index dc829e2f..2bc7a24d Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_swing_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_swing_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_swingrope_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_swingrope_sides.png old mode 100755 new mode 100644 index 314fb50c..0dda1093 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_swingrope_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_swingrope_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_table_legs_brass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_table_legs_brass.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_table_legs_wrought_iron.png b/mods/homedecor_modpack/homedecor/textures/homedecor_table_legs_wrought_iron.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tatami.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tatami.png old mode 100755 new mode 100644 index adc22ebd..49c2a13f Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tatami.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tatami.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_bottom.png deleted file mode 100755 index 37f503c9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_inv.png old mode 100755 new mode 100644 index bde3b3df..3a5b73f5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_sides.png old mode 100755 new mode 100644 index 37f503c9..ab7732c1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_top.png deleted file mode 100755 index 643000c8..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_telephone_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_front_animated.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_front_animated.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_left.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_right.png deleted file mode 100755 index 31c1440e..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_television_right.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_television_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_television_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_terracotta_base.png b/mods/homedecor_modpack/homedecor/textures/homedecor_terracotta_base.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tile_brass.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tile_brass.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tile_brass2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tile_brass2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tile_wrought_iron.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tile_wrought_iron.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tile_wrought_iron2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tile_wrought_iron2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_titanium_dioxide.png b/mods/homedecor_modpack/homedecor/textures/homedecor_titanium_dioxide.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_inv.png old mode 100755 new mode 100644 index f5df038d..7291c0bd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_sides.png old mode 100755 new mode 100644 index 33729b82..13ecb45c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_top.png deleted file mode 100755 index 7f6b198c..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_toploaf.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_toploaf.png old mode 100755 new mode 100644 index fbcdd7ce..9cad61fd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_toploaf.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_toaster_toploaf.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_ends.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_ends.png deleted file mode 100755 index 65a4c44d..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_ends.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_inv.png old mode 100755 new mode 100644 index e1c1d667..b3ac19bb Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_sides.png deleted file mode 100755 index 86e95fb1..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_toilet_paper_sides.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_front.png old mode 100755 new mode 100644 index 77fc7c7d..bc548ac4 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_sides.png old mode 100755 new mode 100644 index 7b41a7a4..16651c3c Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_top.png old mode 100755 new mode 100644 index b9e22e9e..b736d9f3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_bottom_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_inv.png old mode 100755 new mode 100644 index aa9e1ef6..234a40c5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_back.png old mode 100755 new mode 100644 index ee252a06..87eacdd9 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_back.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_back.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_bottom.png old mode 100755 new mode 100644 index 7eca3a63..676d11ad Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_bottom.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_bottom.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_front.png old mode 100755 new mode 100644 index e9e55be0..3c119e55 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_front.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_front.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_left.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_left.png old mode 100755 new mode 100644 index 488b5367..bb4fe636 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_left.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_left.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_right.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_right.png old mode 100755 new mode 100644 index 579b5371..dd32dcb0 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_right.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_right.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_top.png old mode 100755 new mode 100644 index 02d0fc5c..28783042 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_tool_cabinet_top_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_fb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_fb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_towel_rod_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_inv.png old mode 100755 new mode 100644 index 213738cd..cb8e70bb Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_sides.png old mode 100755 new mode 100644 index 102e9284..f96d9fe1 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_sides.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_sides.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_tb.png old mode 100755 new mode 100644 index e4970731..d45853f7 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_tb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_trashcan_tb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_trophy_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_trophy_inv.png old mode 100755 new mode 100644 index c76768f5..bd972b9a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_trophy_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_trophy_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_legs.png b/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_legs.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_legs_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_legs_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_utility_table_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_vcr.png b/mods/homedecor_modpack/homedecor/textures/homedecor_vcr.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wall_lantern.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wall_lantern.png old mode 100755 new mode 100644 index c660df4f..738f64ea Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wall_lantern.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_wall_lantern.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_back1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_back1.png deleted file mode 100755 index 89abfc32..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_back1.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_back2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_back2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_bottom.png deleted file mode 100755 index 22f76ffa..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_bottom.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontb.png old mode 100755 new mode 100644 index 05cd043f..94cc3dae Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontb.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontb.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontt.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontt.png old mode 100755 new mode 100644 index 66d214c4..bc1d2e46 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontt.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_frontt.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_inv.png old mode 100755 new mode 100644 index 62d801c0..334f9a21 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides1.png deleted file mode 100755 index 89abfc32..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides1.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides2.png deleted file mode 100755 index 89abfc32..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_sides2.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_top.png deleted file mode 100755 index 84f67ca9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wardrobe_top.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_back.png b/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_front.png b/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_washing_machine_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_bottom.png b/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_brown.png b/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_brown.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_green.png b/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_grey.png b/mods/homedecor_modpack/homedecor/textures/homedecor_welcome_mat_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_base_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_base_top.png old mode 100755 new mode 100644 index 50ce70a8..b0aac400 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_well_base_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_well_base_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_inv.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_inv.png old mode 100755 new mode 100644 index 77cb80f0..c22c7844 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_well_inv.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_well_inv.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side1.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side2.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side3.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_side3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_top.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_top.png old mode 100755 new mode 100644 index d6fb9386..c6c0fcf5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_top.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_top.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_wood.png b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_wood.png old mode 100755 new mode 100644 index d6fb9386..c6c0fcf5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_wood.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_well_roof_wood.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_white_metal.png b/mods/homedecor_modpack/homedecor/textures/homedecor_white_metal.png old mode 100755 new mode 100644 index faae38cc..40b39e96 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_white_metal.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_white_metal.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_white_paint.png b/mods/homedecor_modpack/homedecor/textures/homedecor_white_paint.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_frame.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_frame.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_quartered.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_quartered.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_black.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_black.png old mode 100755 new mode 100644 index cc29ebcd..13e566e3 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_black.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_black.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_dark_grey.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_dark_grey.png old mode 100755 new mode 100644 index 52c4c784..b2a08e76 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_dark_grey.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_dark_grey.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_forest_green.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_forest_green.png old mode 100755 new mode 100644 index 51a261e8..ec6729bb Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_forest_green.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_forest_green.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_grey.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_grey.png old mode 100755 new mode 100644 index 906ce714..e8d7e4bd Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_grey.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_grey.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_light_blue.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_light_blue.png old mode 100755 new mode 100644 index 9e2a87f3..d8c3d1c8 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_light_blue.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_light_blue.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_mahogany.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_mahogany.png old mode 100755 new mode 100644 index a31a97e7..dcf4743a Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_mahogany.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_mahogany.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_oak.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_oak.png old mode 100755 new mode 100644 index 952fb40a..0a62af15 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_oak.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_oak.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_red.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_red.png old mode 100755 new mode 100644 index 9d731a7a..92e4b7f7 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_red.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_red.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_violet.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_violet.png old mode 100755 new mode 100644 index 2323c848..2433f6d5 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_violet.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_violet.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_white.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_white.png old mode 100755 new mode 100644 index 575dfbf5..bab5be7e Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_white.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_white.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_yellow.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_yellow.png old mode 100755 new mode 100644 index 5ed128fb..943e28a9 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_yellow.png and b/mods/homedecor_modpack/homedecor/textures/homedecor_window_shutter_yellow.png differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_window_sides.png b/mods/homedecor_modpack/homedecor/textures/homedecor_window_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_windowblinds.png b/mods/homedecor_modpack/homedecor/textures/homedecor_windowblinds.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_large_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_large_edges.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_large_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_large_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_edges.png deleted file mode 100755 index b4b8a1d9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_tb.png deleted file mode 100755 index 79ace231..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_round_tb.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_edges.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_edges.png deleted file mode 100755 index b4b8a1d9..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_edges.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_tb.png b/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_tb.png deleted file mode 100755 index f7f4bd6e..00000000 Binary files a/mods/homedecor_modpack/homedecor/textures/homedecor_wood_table_small_square_tb.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor/window_treatments.lua b/mods/homedecor_modpack/homedecor/window_treatments.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/LICENSE b/mods/homedecor_modpack/homedecor_3d_extras/LICENSE old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/copyright.txt b/mods/homedecor_modpack/homedecor_3d_extras/copyright.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/depends.txt b/mods/homedecor_modpack/homedecor_3d_extras/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/init.lua b/mods/homedecor_modpack/homedecor_3d_extras/init.lua old mode 100755 new mode 100644 index bd5a241d..1de37b90 --- a/mods/homedecor_modpack/homedecor_3d_extras/init.lua +++ b/mods/homedecor_modpack/homedecor_3d_extras/init.lua @@ -1,67 +1,9 @@ minetest.override_item("default:bookshelf", { - drawtype = "nodebox", - tiles = { - "3dbookshelf_top.png", - "3dbookshelf_bottom.png", - "3dbookshelf_sides.png", - "3dbookshelf_sides.png", - "3dbookshelf_fb.png", - "3dbookshelf_fb.png" - }, + drawtype = "mesh", + mesh = "3dbookshelf.obj", + tiles = { "3dbookshelf.png" }, paramtype = "light", paramtype2 = "facedir", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.1875, 0.5, 0.5, 0.1875}, - {-0.5, -0.5, -0.5, -0.4375, 0.5, 0.5}, - {0.4375, -0.5, -0.5, 0.5, 0.5, 0.5}, - {-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5}, - {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, - {-0.5, -0.0625, -0.5, 0.5, 0.0625, 0.5}, - {-0.4375, 0.0625, -0.486, -0.3125, 0.375, -0.125}, - {-0.3125, 0.0625, -0.420, -0.25, 0.3125, -0.125}, - {-0.25, 0.0625, -0.456, -0.1875, 0.375, -0.125}, - {-0.125, 0.0625, -0.481, 0, 0.4375, -0.125}, - {0, 0.0625, -0.4375, 0.0625, 0.3125, -0.125}, - {0.0625, 0.0625, -0.461, 0.125, 0.375, -0.125}, - {0.125, 0.0625, -0.425, 0.1875, 0.25, -0.125}, - {0.1875, 0.0625, -0.456, 0.25, 0.3125, -0.125}, - {0.25, 0.0625, -0.430, 0.3125, 0.25, -0.125}, - {0.3125, 0.0625, -0.456, 0.4375, 0.375, -0.125}, - {-0.4375, -0.4375, -0.456, -0.25, -0.125, -0.125}, - {-0.25, -0.4375, -0.435, -0.125, -0.1875, -0.125}, - {-0.125, -0.4375, -0.466, -0.0625, -0.125, -0.125}, - {-0.0625, -0.4375, -0.476, 0, -0.1875, -0.125}, - {0.25, -0.4375, -0.471, 0.375, -0.125, -0.125}, - {0.375, -0.4375, -0.445, 0.4375, -0.1875, -0.125}, - {0.3125, 0.0625, 0.125, 0.4375, 0.375, 0.471}, - {0.25, 0.0625, 0.125, 0.3125, 0.3125, 0.461}, - {0.1875, 0.0625, 0.125, 0.25, 0.375, 0.430}, - {0, 0.0625, 0.125, 0.125, 0.4375, 0.497}, - {-0.0625, 0.0625, 0.125, 0, 0.3125, 0.435}, - {-0.125, 0.0625, 0.125, -0.0625, 0.375, 0.437}, - {-0.1875, 0.0625, 0.125, -0.125, 0.25, 0.379}, - {-0.25, 0.0625, 0.125, -0.1875, 0.3125, 0.445}, - {-0.3125, 0.0625, 0.125, -0.25, 0.25, 0.425}, - {-0.4375, 0.0625, 0.125, -0.3125, 0.375, 0.458}, - {0.25, -0.4375, 0.125, 0.4375, -0.125, 0.437}, - {0.125, -0.4375, 0.125, 0.25, -0.1875, 0.461}, - {0.0625, -0.4375, 0.125, 0.125, -0.125, 0.435}, - {-0.0625, -0.4375, 0.1875, 0, -0.1875, 0.456}, - {-0.25, -0.4375, 0.125, -0.1875, -0.125, 0.394}, - {-0.375, -0.4375, 0.125, -0.25, -0.0625, 0.430}, - {-0.4375, -0.4375, 0.125, -0.375, -0.125, 0.394}, - {-0.125, -0.4375, 0.125, -0.0625, -0.1875, 0.437}, - {0.125, -0.4375, -0.435, 0.25, -0.1875, -0.125}, - {0, -0.4375, -0.430, 0.0625, -0.1875, -0.125}, - {0.0625, -0.4375, -0.461, 0.125, -0.1875, -0.125}, - {-0.1875, 0.0625, -0.4375, -0.125, 0.375, -0.125}, - {0.125, 0.0625, 0.125, 0.1875, 0.375, 0.448}, - {0, -0.4375, 0.125, 0.0625, -0.1875, 0.471}, - {-0.1875, -0.4375, 0.125, -0.125, -0.1875, 0.466}, - } - } }) if minetest.get_modpath("moreblocks") then diff --git a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_bottom.png b/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_fb.png b/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_fb.png deleted file mode 100755 index 3154b264..00000000 Binary files a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_fb.png and /dev/null differ diff --git a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_fb_empty.png b/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_fb_empty.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_sides.png b/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_top.png b/mods/homedecor_modpack/homedecor_3d_extras/textures/3dbookshelf_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/depends.txt b/mods/homedecor_modpack/inbox/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/init.lua b/mods/homedecor_modpack/inbox/init.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_back.png b/mods/homedecor_modpack/inbox/textures/inbox_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_bottom.png b/mods/homedecor_modpack/inbox/textures/inbox_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_east.png b/mods/homedecor_modpack/inbox/textures/inbox_east.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_front.png b/mods/homedecor_modpack/inbox/textures/inbox_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_side_and_back.png b/mods/homedecor_modpack/inbox/textures/inbox_side_and_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_top.png b/mods/homedecor_modpack/inbox/textures/inbox_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/inbox/textures/inbox_west.png b/mods/homedecor_modpack/inbox/textures/inbox_west.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/itemframes/depends.txt b/mods/homedecor_modpack/itemframes/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/itemframes/init.lua b/mods/homedecor_modpack/itemframes/init.lua old mode 100755 new mode 100644 index f5c8ce06..f3b9acba --- a/mods/homedecor_modpack/itemframes/init.lua +++ b/mods/homedecor_modpack/itemframes/init.lua @@ -47,9 +47,9 @@ facedir[3] = {x=-1,y=0,z=0} local remove_item = function(pos, node) local objs = nil if node.name == "itemframes:frame" then - objs = minetest.env:get_objects_inside_radius(pos, .5) + objs = minetest.get_objects_inside_radius(pos, .5) elseif node.name == "itemframes:pedestal" then - objs = minetest.env:get_objects_inside_radius({x=pos.x,y=pos.y+1,z=pos.z}, .5) + objs = minetest.get_objects_inside_radius({x=pos.x,y=pos.y+1,z=pos.z}, .5) end if objs then for _, obj in ipairs(objs) do @@ -62,7 +62,7 @@ end local update_item = function(pos, node) remove_item(pos, node) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if meta:get_string("item") ~= "" then if node.name == "itemframes:frame" then local posad = facedir[node.param2] @@ -75,7 +75,7 @@ local update_item = function(pos, node) end tmp.nodename = node.name tmp.texture = ItemStack(meta:get_string("item")):get_name() - local e = minetest.env:add_entity(pos,"itemframes:item") + local e = minetest.add_entity(pos,"itemframes:item") if node.name == "itemframes:frame" then local yaw = math.pi*2 - node.param2 * math.pi/2 e:setyaw(yaw) @@ -84,12 +84,12 @@ local update_item = function(pos, node) end local drop_item = function(pos, node) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if meta:get_string("item") ~= "" then if node.name == "itemframes:frame" then - minetest.env:add_item(pos, meta:get_string("item")) + minetest.add_item(pos, meta:get_string("item")) elseif node.name == "itemframes:pedestal" then - minetest.env:add_item({x=pos.x,y=pos.y+1,z=pos.z}, meta:get_string("item")) + minetest.add_item({x=pos.x,y=pos.y+1,z=pos.z}, meta:get_string("item")) end meta:set_string("item","") end @@ -111,13 +111,13 @@ minetest.register_node("itemframes:frame",{ legacy_wallmounted = true, sounds = default.node_sound_defaults(), after_place_node = function(pos, placer, itemstack) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) meta:set_string("owner",placer:get_player_name()) meta:set_string("infotext","Item frame (owned by "..placer:get_player_name()..")") end, on_rightclick = function(pos, node, clicker, itemstack) if not itemstack then return end - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if clicker:get_player_name() == meta:get_string("owner") then drop_item(pos,node) local s = itemstack:take_item() @@ -127,14 +127,14 @@ minetest.register_node("itemframes:frame",{ return itemstack end, on_punch = function(pos,node,puncher) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if puncher:get_player_name() == meta:get_string("owner") then drop_item(pos, node) end end, can_dig = function(pos,player) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) return player:get_player_name() == meta:get_string("owner") end, }) @@ -155,13 +155,13 @@ minetest.register_node("itemframes:pedestal",{ groups = { cracky=3 }, sounds = default.node_sound_defaults(), after_place_node = function(pos, placer, itemstack) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) meta:set_string("owner",placer:get_player_name()) meta:set_string("infotext","Pedestal (owned by "..placer:get_player_name()..")") end, on_rightclick = function(pos, node, clicker, itemstack) if not itemstack then return end - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if clicker:get_player_name() == meta:get_string("owner") then drop_item(pos,node) local s = itemstack:take_item() @@ -171,14 +171,14 @@ minetest.register_node("itemframes:pedestal",{ return itemstack end, on_punch = function(pos,node,puncher) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) if puncher:get_player_name() == meta:get_string("owner") then drop_item(pos,node) end end, can_dig = function(pos,player) - local meta = minetest.env:get_meta(pos) + local meta = minetest.get_meta(pos) return player:get_player_name() == meta:get_string("owner") end, }) diff --git a/mods/homedecor_modpack/itemframes/textures/itemframes_frame.png b/mods/homedecor_modpack/itemframes/textures/itemframes_frame.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/itemframes/textures/itemframes_pedestal.png b/mods/homedecor_modpack/itemframes/textures/itemframes_pedestal.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/README.txt b/mods/homedecor_modpack/lrfurn/README.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/armchairs.lua b/mods/homedecor_modpack/lrfurn/armchairs.lua old mode 100755 new mode 100644 index ee0a9e50..c5b1dc0e --- a/mods/homedecor_modpack/lrfurn/armchairs.lua +++ b/mods/homedecor_modpack/lrfurn/armchairs.lua @@ -78,14 +78,14 @@ for i in ipairs(armchairs_list) do } }) - --[[minetest.register_craft({ + minetest.register_craft({ output = "lrfurn:armchair_"..colour, recipe = { {"wool:"..colour, "", "", }, {"group:wood_slab", "", "", }, {"group:stick", "", "", } } - })]] -- Uncomment if further declaration of a group:wood_slab + }) end diff --git a/mods/homedecor_modpack/lrfurn/coffeetable.lua b/mods/homedecor_modpack/lrfurn/coffeetable.lua old mode 100755 new mode 100644 index a25d5d1a..0a388990 --- a/mods/homedecor_modpack/lrfurn/coffeetable.lua +++ b/mods/homedecor_modpack/lrfurn/coffeetable.lua @@ -109,14 +109,14 @@ minetest.register_craft({ } }) ---[[minetest.register_craft({ +minetest.register_craft({ output = "lrfurn:coffeetable", recipe = { {"", "", "", }, {"group:wood_slab", "group:wood_slab", "group:wood_slab", }, {"group:stick", "", "group:stick", } } -})]] -- Uncomment if further declaration of a group:wood_slab +}) if minetest.setting_get("log_mods") then minetest.log("action", "coffeetable loaded") diff --git a/mods/homedecor_modpack/lrfurn/depends.txt b/mods/homedecor_modpack/lrfurn/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/endtable.lua b/mods/homedecor_modpack/lrfurn/endtable.lua old mode 100755 new mode 100644 index 2be7c617..4212037d --- a/mods/homedecor_modpack/lrfurn/endtable.lua +++ b/mods/homedecor_modpack/lrfurn/endtable.lua @@ -46,14 +46,14 @@ minetest.register_craft({ } }) ---[[minetest.register_craft({ +minetest.register_craft({ output = "lrfurn:endtable", recipe = { {"", "", "", }, {"group:wood_slab", "group:wood_slab", "", }, {"group:stick", "group:stick", "", } } -})]] -- Uncomment if further declaration of a group:wood_slab +}) if minetest.setting_get("log_mods") then minetest.log("action", "endtable loaded") diff --git a/mods/homedecor_modpack/lrfurn/init.lua b/mods/homedecor_modpack/lrfurn/init.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/longsofas.lua b/mods/homedecor_modpack/lrfurn/longsofas.lua old mode 100755 new mode 100644 index cf01cc55..d7be89f7 --- a/mods/homedecor_modpack/lrfurn/longsofas.lua +++ b/mods/homedecor_modpack/lrfurn/longsofas.lua @@ -202,14 +202,14 @@ for i in ipairs(longsofas_list) do } }) ---[[ minetest.register_craft({ + minetest.register_craft({ output = "lrfurn:longsofa_"..colour, recipe = { {"wool:"..colour, "wool:"..colour, "wool:"..colour, }, {"group:wood_slab", "group:wood_slab", "group:wood_slab", }, {"group:stick", "group:stick", "group:stick", } } - })]] -- Uncomment if further declaration of a group:wood_slab + }) end diff --git a/mods/homedecor_modpack/lrfurn/sofas.lua b/mods/homedecor_modpack/lrfurn/sofas.lua old mode 100755 new mode 100644 index 4d882fa7..6867418c --- a/mods/homedecor_modpack/lrfurn/sofas.lua +++ b/mods/homedecor_modpack/lrfurn/sofas.lua @@ -146,14 +146,14 @@ for i in ipairs(sofas_list) do } }) ---[[ minetest.register_craft({ + minetest.register_craft({ output = "lrfurn:sofa_"..colour, recipe = { {"wool:"..colour, "wool:"..colour, "", }, {"group:wood_slab", "group:wood_slab", "", }, {"group:stick", "group:stick", "", } } - })]] -- Uncomment if further declaration of a group:wood_slab + }) end diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_front_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_armchair_top_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_coffeetable_back.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_coffeetable_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_coffeetable_front.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_coffeetable_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_front_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_longsofa_middle_top_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_back_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_front_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_side_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_left_top_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_front_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_side_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_black.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_black.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_blue.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_blue.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_green.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_green.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_grey.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_grey.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_orange.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_orange.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_red.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_red.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_violet.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_violet.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_white.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_white.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_yellow.png b/mods/homedecor_modpack/lrfurn/textures/lrfurn_sofa_right_top_yellow.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/modpack.txt b/mods/homedecor_modpack/modpack.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/README.md b/mods/homedecor_modpack/plasmascreen/README.md old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/depends.txt b/mods/homedecor_modpack/plasmascreen/depends.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/init.lua b/mods/homedecor_modpack/plasmascreen/init.lua old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_all_together.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_all_together.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_back.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen1.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen2.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen3.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen4.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen4.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen5.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen5.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen6.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_screen6.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_tv_inv.png b/mods/homedecor_modpack/plasmascreen/textures/plasmascreen_tv_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/LICENSE b/mods/homedecor_modpack/signs_lib/LICENSE old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/copyright.txt b/mods/homedecor_modpack/signs_lib/copyright.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/depends.txt b/mods/homedecor_modpack/signs_lib/depends.txt old mode 100755 new mode 100644 index 4ad96d51..c48fe0d0 --- a/mods/homedecor_modpack/signs_lib/depends.txt +++ b/mods/homedecor_modpack/signs_lib/depends.txt @@ -1 +1,3 @@ default +intllib? + diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_20.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_20.png old mode 100755 new mode 100644 index f2e24f46..b904af91 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_20.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_20.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_21.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_21.png old mode 100755 new mode 100644 index 71aa8ac8..d7ec3140 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_21.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_21.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_22.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_22.png old mode 100755 new mode 100644 index 0628c47b..452cba5a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_22.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_22.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_23.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_23.png old mode 100755 new mode 100644 index e0cd93bc..5f6d8bdb Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_23.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_23.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_24.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_24.png old mode 100755 new mode 100644 index f6ba4e96..d994e146 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_24.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_24.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_25.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_25.png old mode 100755 new mode 100644 index 337c67b4..8136f8a6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_25.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_25.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_26.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_26.png old mode 100755 new mode 100644 index 66a36400..50c8e75f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_26.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_26.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_27.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_27.png old mode 100755 new mode 100644 index c2de587d..79a02b79 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_27.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_27.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_28.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_28.png old mode 100755 new mode 100644 index 45726731..db5a30c3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_28.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_28.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_29.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_29.png old mode 100755 new mode 100644 index 15d2d8c4..4c781af9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_29.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_29.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2a.png old mode 100755 new mode 100644 index 5ef6d178..bb1eae97 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2b.png old mode 100755 new mode 100644 index f2d0e845..4269e563 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2c.png old mode 100755 new mode 100644 index edbc209a..955d975d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2d.png old mode 100755 new mode 100644 index 0482fec8..5a8899b0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2e.png old mode 100755 new mode 100644 index 6e1b5a0d..feb31400 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2f.png old mode 100755 new mode 100644 index a6f8fb5e..e92eac68 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_2f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_30.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_30.png old mode 100755 new mode 100644 index 0f664bc1..1519018f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_30.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_30.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_31.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_31.png old mode 100755 new mode 100644 index 0149aa58..09f0f1a8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_31.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_31.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_32.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_32.png old mode 100755 new mode 100644 index 9d60707a..fb114563 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_32.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_32.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_33.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_33.png old mode 100755 new mode 100644 index 31caea45..04921f7a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_33.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_33.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_34.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_34.png old mode 100755 new mode 100644 index 9c3b2d10..b927f08f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_34.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_34.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_35.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_35.png old mode 100755 new mode 100644 index b0b6a4b1..fbe7265b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_35.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_35.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_36.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_36.png old mode 100755 new mode 100644 index 82e4c6f0..56d7b587 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_36.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_36.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_37.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_37.png old mode 100755 new mode 100644 index d9998a37..05c17930 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_37.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_37.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_38.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_38.png old mode 100755 new mode 100644 index addb0193..e8a96587 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_38.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_38.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_39.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_39.png old mode 100755 new mode 100644 index a19db552..1e33ac3a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_39.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_39.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3a.png old mode 100755 new mode 100644 index 44c88a8d..ab2a3ce8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3b.png old mode 100755 new mode 100644 index c7679284..2ecbcd5d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3c.png old mode 100755 new mode 100644 index a6b5e9a2..c3712d45 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3d.png old mode 100755 new mode 100644 index 5cfff81a..a7fa62cc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3e.png old mode 100755 new mode 100644 index f8b73c0a..828bb4a4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3f.png old mode 100755 new mode 100644 index 936191da..9ec78af1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_3f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_40.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_40.png old mode 100755 new mode 100644 index 1aed18fb..86e81a9e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_40.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_40.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_41.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_41.png old mode 100755 new mode 100644 index a48a88fd..79b1fa13 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_41.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_41.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_42.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_42.png old mode 100755 new mode 100644 index 55028733..28fdadc1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_42.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_42.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_43.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_43.png old mode 100755 new mode 100644 index c9d7f25f..6dd5b4b8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_43.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_43.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_44.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_44.png old mode 100755 new mode 100644 index 51b29b52..d0707c68 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_44.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_44.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_45.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_45.png old mode 100755 new mode 100644 index f985a77e..e9930a10 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_45.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_45.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_46.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_46.png old mode 100755 new mode 100644 index 692fdca0..6fb8f1fb Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_46.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_46.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_47.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_47.png old mode 100755 new mode 100644 index 2dded731..f54783d9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_47.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_47.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_48.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_48.png old mode 100755 new mode 100644 index 460849c5..1fc082db Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_48.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_48.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_49.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_49.png old mode 100755 new mode 100644 index 4a0f2201..af588eee Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_49.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_49.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4a.png old mode 100755 new mode 100644 index ade9ce91..9135ccab Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4b.png old mode 100755 new mode 100644 index 6bee89d2..78310197 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4c.png old mode 100755 new mode 100644 index ac89737c..d7170301 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4d.png old mode 100755 new mode 100644 index ba95c6ee..92fe7d46 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4e.png old mode 100755 new mode 100644 index f4d26521..cd3a3dd2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4f.png old mode 100755 new mode 100644 index 1cdfa04e..b73b4d46 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_4f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_50.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_50.png old mode 100755 new mode 100644 index 8db450b1..6647606a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_50.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_50.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_51.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_51.png old mode 100755 new mode 100644 index 3d75c3e9..c45c64a9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_51.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_51.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_52.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_52.png old mode 100755 new mode 100644 index b63e3ca2..78efd105 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_52.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_52.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_53.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_53.png old mode 100755 new mode 100644 index c10d27c3..e576219c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_53.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_53.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_54.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_54.png old mode 100755 new mode 100644 index dd3f29cf..17b556ad Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_54.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_54.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_55.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_55.png old mode 100755 new mode 100644 index 427a7225..60d90080 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_55.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_55.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_56.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_56.png old mode 100755 new mode 100644 index 8322a55f..a21378ec Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_56.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_56.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_57.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_57.png old mode 100755 new mode 100644 index 8087239b..92dedf7c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_57.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_57.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_58.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_58.png old mode 100755 new mode 100644 index dba95350..bce83e39 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_58.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_58.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_59.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_59.png old mode 100755 new mode 100644 index 3e9ff957..248964db Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_59.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_59.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5a.png old mode 100755 new mode 100644 index e5e5f4b9..b4183f39 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5b.png old mode 100755 new mode 100644 index caa62c64..7161fd1e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5c.png old mode 100755 new mode 100644 index 2952f08d..6ff667c6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5d.png old mode 100755 new mode 100644 index 2ccfb85c..58aa3b45 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5e.png old mode 100755 new mode 100644 index 049d1dd9..f0b0f070 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5f.png old mode 100755 new mode 100644 index 4bcbcab6..47657383 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_5f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_60.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_60.png old mode 100755 new mode 100644 index f19e8854..b9d7ef10 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_60.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_60.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_61.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_61.png old mode 100755 new mode 100644 index 8d5e09c5..4200cf82 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_61.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_61.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_62.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_62.png old mode 100755 new mode 100644 index 3c736158..3665a5e8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_62.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_62.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_63.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_63.png old mode 100755 new mode 100644 index c412a926..d80bfd71 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_63.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_63.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_64.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_64.png old mode 100755 new mode 100644 index 07098489..4194720b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_64.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_64.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_65.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_65.png old mode 100755 new mode 100644 index 30cb8fa3..8a02a467 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_65.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_65.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_66.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_66.png old mode 100755 new mode 100644 index 3e8911c2..20ddc9bd Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_66.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_66.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_67.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_67.png old mode 100755 new mode 100644 index 19cdc361..9cd21cc4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_67.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_67.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_68.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_68.png old mode 100755 new mode 100644 index 2c0bb43c..be34c84a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_68.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_68.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_69.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_69.png old mode 100755 new mode 100644 index feb31ebe..b82d55c7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_69.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_69.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6a.png old mode 100755 new mode 100644 index 9b146888..82d74311 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6b.png old mode 100755 new mode 100644 index 4d88afb3..28a07381 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6c.png old mode 100755 new mode 100644 index 4a0f2201..af588eee Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6d.png old mode 100755 new mode 100644 index 08629f2b..f2a0f3d8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6e.png old mode 100755 new mode 100644 index 9ce95ab8..722d89c1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6f.png old mode 100755 new mode 100644 index 77f4cefa..e9e69986 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_6f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_70.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_70.png old mode 100755 new mode 100644 index ee40d17f..99b949c7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_70.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_70.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_71.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_71.png old mode 100755 new mode 100644 index 6eb8d8cd..90076fc3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_71.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_71.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_72.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_72.png old mode 100755 new mode 100644 index 8df26589..10a56c26 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_72.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_72.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_73.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_73.png old mode 100755 new mode 100644 index 0201d368..9bb1bde1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_73.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_73.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_74.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_74.png old mode 100755 new mode 100644 index b2b9f9ed..734c6d4b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_74.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_74.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_75.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_75.png old mode 100755 new mode 100644 index e1a2fb12..ef854b6f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_75.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_75.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_76.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_76.png old mode 100755 new mode 100644 index 6632ed9b..6c11b754 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_76.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_76.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_77.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_77.png old mode 100755 new mode 100644 index c1c126cd..a4be8afa Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_77.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_77.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_78.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_78.png old mode 100755 new mode 100644 index b3ec0af8..74dfaab0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_78.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_78.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_79.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_79.png old mode 100755 new mode 100644 index 173612df..26839bfe Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_79.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_79.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7a.png old mode 100755 new mode 100644 index 2ee23531..630c9ba3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7b.png old mode 100755 new mode 100644 index 1ee4af19..578ba74e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7c.png old mode 100755 new mode 100644 index b12a7905..80baa63e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7d.png old mode 100755 new mode 100644 index 06f6692a..f3d6c1c0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7e.png old mode 100755 new mode 100644 index 13e957da..2c22355e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/11px/hdf_7e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_20.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_20.png old mode 100755 new mode 100644 index 05fab409..465982d6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_20.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_20.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_21.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_21.png old mode 100755 new mode 100644 index d5540b60..01929d48 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_21.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_21.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_22.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_22.png old mode 100755 new mode 100644 index 12476c60..2acde25d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_22.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_22.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_23.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_23.png old mode 100755 new mode 100644 index ae77104b..ace14376 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_23.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_23.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_24.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_24.png old mode 100755 new mode 100644 index 9e02d51f..909b015e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_24.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_24.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_25.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_25.png old mode 100755 new mode 100644 index b0a55090..30a78295 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_25.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_25.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_26.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_26.png old mode 100755 new mode 100644 index c3e3f140..d29936c7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_26.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_26.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_27.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_27.png old mode 100755 new mode 100644 index f0c34e45..9844e922 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_27.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_27.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_28.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_28.png old mode 100755 new mode 100644 index cef2dac7..4810d75a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_28.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_28.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_29.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_29.png old mode 100755 new mode 100644 index ab55a99d..e5ff2b76 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_29.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_29.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2a.png old mode 100755 new mode 100644 index 137583dd..54088977 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2b.png old mode 100755 new mode 100644 index f000d89d..9ad7d9ef Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2c.png old mode 100755 new mode 100644 index b2230117..cb3eae05 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2d.png old mode 100755 new mode 100644 index 7b3bf021..c252f37d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2e.png old mode 100755 new mode 100644 index b5b5409e..d3aab5be Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2f.png old mode 100755 new mode 100644 index d310d871..48c25f2e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_2f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_30.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_30.png old mode 100755 new mode 100644 index 647a4c48..56ec3e79 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_30.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_30.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_31.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_31.png old mode 100755 new mode 100644 index aa43a2a5..c526e867 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_31.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_31.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_32.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_32.png old mode 100755 new mode 100644 index 7d434bec..339d9332 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_32.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_32.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_33.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_33.png old mode 100755 new mode 100644 index 5efa4646..aba5466e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_33.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_33.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_34.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_34.png old mode 100755 new mode 100644 index 0581320b..9e71d102 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_34.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_34.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_35.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_35.png old mode 100755 new mode 100644 index fd0d4ac7..c12370ff Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_35.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_35.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_36.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_36.png old mode 100755 new mode 100644 index 3e58fbdb..bebb32a8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_36.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_36.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_37.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_37.png old mode 100755 new mode 100644 index 331de831..73d9bb98 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_37.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_37.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_38.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_38.png old mode 100755 new mode 100644 index 9540e45c..baf7f6f8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_38.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_38.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_39.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_39.png old mode 100755 new mode 100644 index 90f9eea5..95729472 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_39.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_39.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3a.png old mode 100755 new mode 100644 index cbf5523b..23ba0cd0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3b.png old mode 100755 new mode 100644 index c4e8bfb2..c4b467fa Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3c.png old mode 100755 new mode 100644 index caac4e1e..566ba496 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3d.png old mode 100755 new mode 100644 index fb8deaa6..50e6c6f0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3e.png old mode 100755 new mode 100644 index aa32fe97..090f8ca3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3f.png old mode 100755 new mode 100644 index f7d9c5fe..dce47276 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_3f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_40.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_40.png old mode 100755 new mode 100644 index 017c3090..65533fdc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_40.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_40.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_41.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_41.png old mode 100755 new mode 100644 index eacf25e8..e30c27ca Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_41.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_41.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_42.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_42.png old mode 100755 new mode 100644 index 4ca8dd53..28d480b7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_42.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_42.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_43.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_43.png old mode 100755 new mode 100644 index e8292649..db57d8dc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_43.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_43.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_44.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_44.png old mode 100755 new mode 100644 index fd604998..cca9575b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_44.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_44.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_45.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_45.png old mode 100755 new mode 100644 index 136f42fb..07e772b8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_45.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_45.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_46.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_46.png old mode 100755 new mode 100644 index d27bcab1..24de187a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_46.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_46.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_47.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_47.png old mode 100755 new mode 100644 index bf0f2e9c..0deef839 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_47.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_47.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_48.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_48.png old mode 100755 new mode 100644 index d2d9e5fd..f85b4aec Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_48.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_48.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_49.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_49.png old mode 100755 new mode 100644 index 3ffa0197..1f027283 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_49.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_49.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4a.png old mode 100755 new mode 100644 index 261cb4de..b2f7befc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4b.png old mode 100755 new mode 100644 index 2593a0b8..e8d52d60 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4c.png old mode 100755 new mode 100644 index 1c71068b..94d7d480 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4d.png old mode 100755 new mode 100644 index a0553f50..0ee8eb4b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4e.png old mode 100755 new mode 100644 index eb57cb44..8ff83d66 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4f.png old mode 100755 new mode 100644 index 1db98744..b278ccc5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_4f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_50.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_50.png old mode 100755 new mode 100644 index 7b450793..33b52fd6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_50.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_50.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_51.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_51.png old mode 100755 new mode 100644 index 195c6574..892747c7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_51.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_51.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_52.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_52.png old mode 100755 new mode 100644 index 65fca560..acb395ed Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_52.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_52.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_53.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_53.png old mode 100755 new mode 100644 index d9bc6711..028f2841 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_53.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_53.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_54.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_54.png old mode 100755 new mode 100644 index 85aedf47..3bd0a2b9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_54.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_54.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_55.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_55.png old mode 100755 new mode 100644 index 428fba80..81643f94 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_55.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_55.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_56.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_56.png old mode 100755 new mode 100644 index a5fa313d..8726f5bc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_56.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_56.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_57.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_57.png old mode 100755 new mode 100644 index 6cb063bf..5e8d9d0f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_57.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_57.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_58.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_58.png old mode 100755 new mode 100644 index 0f72fce1..2abbda39 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_58.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_58.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_59.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_59.png old mode 100755 new mode 100644 index dbf2d857..ff450930 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_59.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_59.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5a.png old mode 100755 new mode 100644 index 2f9f2f2d..5c706ce1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5b.png old mode 100755 new mode 100644 index a39b2a96..2592f1ff Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5c.png old mode 100755 new mode 100644 index d27e25ef..406d6342 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5d.png old mode 100755 new mode 100644 index b938efdd..a5efa37d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5e.png old mode 100755 new mode 100644 index a49a4031..7f610d87 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5f.png old mode 100755 new mode 100644 index 700bd7bf..07cce5a1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_5f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_60.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_60.png old mode 100755 new mode 100644 index 667dcc26..cd4e0fb3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_60.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_60.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_61.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_61.png old mode 100755 new mode 100644 index d606dd53..dc019ba5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_61.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_61.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_62.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_62.png old mode 100755 new mode 100644 index 7cecc0a9..285d0b2f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_62.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_62.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_63.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_63.png old mode 100755 new mode 100644 index 2998aeb3..8781b8a8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_63.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_63.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_64.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_64.png old mode 100755 new mode 100644 index 9ca950e9..16c9a286 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_64.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_64.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_65.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_65.png old mode 100755 new mode 100644 index 423c244d..810d9c93 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_65.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_65.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_66.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_66.png old mode 100755 new mode 100644 index ffc677d4..411ca573 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_66.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_66.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_67.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_67.png old mode 100755 new mode 100644 index 5324a356..d8820dd1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_67.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_67.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_68.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_68.png old mode 100755 new mode 100644 index 2e2410d4..5b51d05a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_68.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_68.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_69.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_69.png old mode 100755 new mode 100644 index d9f1ef77..55f1a229 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_69.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_69.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6a.png old mode 100755 new mode 100644 index 3d460c17..c20e222f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6b.png old mode 100755 new mode 100644 index 3e8c7b01..fc34fc50 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6c.png old mode 100755 new mode 100644 index 3ffa0197..1f027283 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6d.png old mode 100755 new mode 100644 index 3c58cafc..6c0ae93f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6e.png old mode 100755 new mode 100644 index 5fa80bc9..4f4dec70 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6f.png old mode 100755 new mode 100644 index 8cdf8d0a..921c6119 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_6f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_70.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_70.png old mode 100755 new mode 100644 index f3ab3111..8202199d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_70.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_70.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_71.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_71.png old mode 100755 new mode 100644 index 07cfb197..c02171f0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_71.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_71.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_72.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_72.png old mode 100755 new mode 100644 index 58674ecc..757b9c85 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_72.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_72.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_73.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_73.png old mode 100755 new mode 100644 index 1c34e89d..e38497d9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_73.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_73.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_74.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_74.png old mode 100755 new mode 100644 index 42ef0573..10f9cfa9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_74.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_74.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_75.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_75.png old mode 100755 new mode 100644 index bb50db18..377416ba Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_75.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_75.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_76.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_76.png old mode 100755 new mode 100644 index b93ee7cf..dc558d3a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_76.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_76.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_77.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_77.png old mode 100755 new mode 100644 index 6940916b..6a142984 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_77.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_77.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_78.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_78.png old mode 100755 new mode 100644 index 6aba4851..38b4be03 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_78.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_78.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_79.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_79.png old mode 100755 new mode 100644 index d920fe11..8859fb41 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_79.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_79.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7a.png old mode 100755 new mode 100644 index 45aa6c97..c42c84a3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7b.png old mode 100755 new mode 100644 index 49ac515a..c0ee072c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7c.png old mode 100755 new mode 100644 index 91d40a06..6e9949de Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7d.png old mode 100755 new mode 100644 index ef119247..6162caa2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7e.png old mode 100755 new mode 100644 index 9c1be1e5..ec762d55 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/17px/hdf_7e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_20.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_20.png old mode 100755 new mode 100644 index ee99ff58..d5bcc48f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_20.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_20.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_21.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_21.png old mode 100755 new mode 100644 index 3658b563..7c8ec69b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_21.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_21.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_22.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_22.png old mode 100755 new mode 100644 index c58aa463..fc86e147 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_22.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_22.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_23.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_23.png old mode 100755 new mode 100644 index 52cfc47a..d3fcfe9e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_23.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_23.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_24.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_24.png old mode 100755 new mode 100644 index 77432539..d1ad1439 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_24.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_24.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_25.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_25.png old mode 100755 new mode 100644 index 6896b4ea..de7ed0bc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_25.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_25.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_26.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_26.png old mode 100755 new mode 100644 index 1b10a840..6352ba93 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_26.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_26.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_27.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_27.png old mode 100755 new mode 100644 index 9cbc7ec1..60fb3a92 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_27.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_27.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_28.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_28.png old mode 100755 new mode 100644 index cc5307f7..995aab23 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_28.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_28.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_29.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_29.png old mode 100755 new mode 100644 index f59088bd..4abbf256 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_29.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_29.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2a.png old mode 100755 new mode 100644 index 07358c01..9735f5a0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2b.png old mode 100755 new mode 100644 index f680f96c..1b541745 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2c.png old mode 100755 new mode 100644 index 48a77223..20fca02a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2d.png old mode 100755 new mode 100644 index 7e01a949..4eff0100 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2e.png old mode 100755 new mode 100644 index 732ae829..14a9559b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2f.png old mode 100755 new mode 100644 index 9457afdc..e5bfcd19 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_2f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_30.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_30.png old mode 100755 new mode 100644 index 98393ccb..07e0b9c1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_30.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_30.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_31.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_31.png old mode 100755 new mode 100644 index ef1912fa..e7288669 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_31.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_31.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_32.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_32.png old mode 100755 new mode 100644 index 7fb07589..473a5e75 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_32.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_32.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_33.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_33.png old mode 100755 new mode 100644 index e1f00e0e..5e00f4a9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_33.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_33.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_34.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_34.png old mode 100755 new mode 100644 index 0854fb51..c457ccb7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_34.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_34.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_35.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_35.png old mode 100755 new mode 100644 index 4eaca38d..d088a10f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_35.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_35.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_36.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_36.png old mode 100755 new mode 100644 index d5a28410..f629536b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_36.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_36.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_37.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_37.png old mode 100755 new mode 100644 index eede7d34..fe376483 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_37.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_37.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_38.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_38.png old mode 100755 new mode 100644 index 4ceaf7ef..d5bfdbd1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_38.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_38.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_39.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_39.png old mode 100755 new mode 100644 index 28906735..a1fc0cf4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_39.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_39.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3a.png old mode 100755 new mode 100644 index 8024d0af..9a51d5fd Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3b.png old mode 100755 new mode 100644 index 4a1df19f..9b193fa5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3c.png old mode 100755 new mode 100644 index 7cf9beff..3a7e93f5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3d.png old mode 100755 new mode 100644 index 2a4cbb9c..08311bb5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3e.png old mode 100755 new mode 100644 index 644ebbd7..dfab5235 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3f.png old mode 100755 new mode 100644 index 24685076..6a080da7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_3f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_40.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_40.png old mode 100755 new mode 100644 index b010d414..d98ab165 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_40.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_40.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_41.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_41.png old mode 100755 new mode 100644 index 64100990..e486bff4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_41.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_41.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_42.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_42.png old mode 100755 new mode 100644 index 545b78df..51b87215 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_42.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_42.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_43.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_43.png old mode 100755 new mode 100644 index 2ee2e272..48d51b2d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_43.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_43.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_44.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_44.png old mode 100755 new mode 100644 index 4037a4c3..37946986 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_44.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_44.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_45.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_45.png old mode 100755 new mode 100644 index 7b435ea0..4b250d0b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_45.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_45.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_46.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_46.png old mode 100755 new mode 100644 index 7ec2fc99..10b750e0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_46.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_46.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_47.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_47.png old mode 100755 new mode 100644 index 952a1d9c..90ea6aa3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_47.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_47.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_48.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_48.png old mode 100755 new mode 100644 index cd93d022..587f7d5d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_48.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_48.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_49.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_49.png old mode 100755 new mode 100644 index 5e64cc10..421dc2b3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_49.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_49.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4a.png old mode 100755 new mode 100644 index 321174e3..12e27b97 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4b.png old mode 100755 new mode 100644 index 6ce47556..81d73593 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4c.png old mode 100755 new mode 100644 index addd14dc..3825c6e9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4d.png old mode 100755 new mode 100644 index d2e30f25..7b1cad09 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4e.png old mode 100755 new mode 100644 index dde664cf..1ab03a61 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4f.png old mode 100755 new mode 100644 index 412ba831..cecc6fef Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_4f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_50.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_50.png old mode 100755 new mode 100644 index d07165c2..2c5734b8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_50.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_50.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_51.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_51.png old mode 100755 new mode 100644 index 2e00e2a9..3ec65502 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_51.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_51.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_52.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_52.png old mode 100755 new mode 100644 index 16aa811c..9052cc77 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_52.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_52.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_53.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_53.png old mode 100755 new mode 100644 index 18778631..42f8e00b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_53.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_53.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_54.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_54.png old mode 100755 new mode 100644 index bedfe168..db435591 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_54.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_54.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_55.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_55.png old mode 100755 new mode 100644 index 016ec385..bbc0f57e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_55.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_55.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_56.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_56.png old mode 100755 new mode 100644 index 7879c505..023fa9a0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_56.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_56.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_57.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_57.png old mode 100755 new mode 100644 index 94952b5b..af886292 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_57.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_57.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_58.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_58.png old mode 100755 new mode 100644 index b8af859f..a7863670 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_58.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_58.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_59.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_59.png old mode 100755 new mode 100644 index e049481b..74dc431a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_59.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_59.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5a.png old mode 100755 new mode 100644 index dc4324da..107969f2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5b.png old mode 100755 new mode 100644 index 047036e6..e3d9e9df Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5c.png old mode 100755 new mode 100644 index 6eb1bcbc..328a04c9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5d.png old mode 100755 new mode 100644 index ca46194a..edd4b0d8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5e.png old mode 100755 new mode 100644 index 4766a031..ff943f12 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5f.png old mode 100755 new mode 100644 index ab07bee3..fd7afcf2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_5f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_60.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_60.png old mode 100755 new mode 100644 index ed3d01ae..3eeb984e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_60.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_60.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_61.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_61.png old mode 100755 new mode 100644 index 14fbcabf..95f4561e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_61.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_61.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_62.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_62.png old mode 100755 new mode 100644 index d6682aa2..42950686 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_62.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_62.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_63.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_63.png old mode 100755 new mode 100644 index e08b19c4..5c475c60 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_63.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_63.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_64.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_64.png old mode 100755 new mode 100644 index e0fb32db..b0f8d9f1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_64.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_64.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_65.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_65.png old mode 100755 new mode 100644 index f87b3036..6359127d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_65.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_65.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_66.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_66.png old mode 100755 new mode 100644 index d6580061..f2f68b19 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_66.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_66.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_67.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_67.png old mode 100755 new mode 100644 index 5c56378c..e4c730f0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_67.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_67.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_68.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_68.png old mode 100755 new mode 100644 index 1d0a82df..1345d205 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_68.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_68.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_69.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_69.png old mode 100755 new mode 100644 index d05d212d..4c3ae096 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_69.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_69.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6a.png old mode 100755 new mode 100644 index 8a6a9d0e..98414831 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6b.png old mode 100755 new mode 100644 index cca1092c..b38f7ec9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6c.png old mode 100755 new mode 100644 index 5e64cc10..421dc2b3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6d.png old mode 100755 new mode 100644 index c2bf3900..add38407 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6e.png old mode 100755 new mode 100644 index 6108d173..a9c5d6c1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6f.png old mode 100755 new mode 100644 index 76ea728d..9b501df5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_6f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_70.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_70.png old mode 100755 new mode 100644 index 7f6d79cd..ac35aab4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_70.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_70.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_71.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_71.png old mode 100755 new mode 100644 index 9ad16dc1..8a20c6e3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_71.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_71.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_72.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_72.png old mode 100755 new mode 100644 index b80dc656..f1e99934 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_72.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_72.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_73.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_73.png old mode 100755 new mode 100644 index e2a8ac0b..dfa98ecb Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_73.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_73.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_74.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_74.png old mode 100755 new mode 100644 index 58ecb68d..b8f6eb26 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_74.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_74.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_75.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_75.png old mode 100755 new mode 100644 index 96a2f37a..4fd226ba Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_75.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_75.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_76.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_76.png old mode 100755 new mode 100644 index 449ed5c8..9e651e79 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_76.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_76.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_77.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_77.png old mode 100755 new mode 100644 index d5719d84..1f85782a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_77.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_77.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_78.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_78.png old mode 100755 new mode 100644 index 68efd4d9..322b871a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_78.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_78.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_79.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_79.png old mode 100755 new mode 100644 index d138722c..91ac78de Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_79.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_79.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7a.png old mode 100755 new mode 100644 index 9c7b7668..65fdb734 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7b.png old mode 100755 new mode 100644 index 33cf85de..96c8eaee Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7c.png old mode 100755 new mode 100644 index d1f0ccfa..aa8cace9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7d.png old mode 100755 new mode 100644 index 45a49fdd..c609507b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7e.png old mode 100755 new mode 100644 index 6a9bdf14..b741ee04 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/25px/hdf_7e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_20.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_20.png old mode 100755 new mode 100644 index 7ac4dcab..a83236df Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_20.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_20.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_21.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_21.png old mode 100755 new mode 100644 index 243abc35..d3b9f618 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_21.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_21.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_22.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_22.png old mode 100755 new mode 100644 index 0161b074..ea354d8e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_22.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_22.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_23.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_23.png old mode 100755 new mode 100644 index 96ee76ba..eded5203 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_23.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_23.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_24.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_24.png old mode 100755 new mode 100644 index 6243c6e2..9225f94a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_24.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_24.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_25.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_25.png old mode 100755 new mode 100644 index 310ada4d..473590f7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_25.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_25.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_26.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_26.png old mode 100755 new mode 100644 index d591c9d8..b7a97786 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_26.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_26.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_27.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_27.png old mode 100755 new mode 100644 index 30ac7f93..5185d817 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_27.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_27.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_28.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_28.png old mode 100755 new mode 100644 index 8976cd14..8641fe1c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_28.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_28.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_29.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_29.png old mode 100755 new mode 100644 index 42c45c64..044366c1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_29.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_29.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2a.png old mode 100755 new mode 100644 index 9cebf8a8..3da8dc4b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2b.png old mode 100755 new mode 100644 index 27193c61..1c5be462 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2c.png old mode 100755 new mode 100644 index 47cf1f29..dd8de220 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2d.png old mode 100755 new mode 100644 index d7495602..3a8f62c0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2e.png old mode 100755 new mode 100644 index e8e23a98..860df5db Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2f.png old mode 100755 new mode 100644 index fcd595e5..91b0e1c7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_2f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_30.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_30.png old mode 100755 new mode 100644 index 14147b3c..c34aaf87 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_30.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_30.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_31.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_31.png old mode 100755 new mode 100644 index 21bfd7b8..091e6c9b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_31.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_31.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_32.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_32.png old mode 100755 new mode 100644 index 469cf357..e43a58f1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_32.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_32.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_33.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_33.png old mode 100755 new mode 100644 index e8961372..7a873cf1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_33.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_33.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_34.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_34.png old mode 100755 new mode 100644 index a90f0857..952d474d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_34.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_34.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_35.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_35.png old mode 100755 new mode 100644 index 6b0244b7..4297837c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_35.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_35.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_36.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_36.png old mode 100755 new mode 100644 index 4e743b66..71c6e4b6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_36.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_36.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_37.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_37.png old mode 100755 new mode 100644 index 896ca7e8..c73dc109 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_37.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_37.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_38.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_38.png old mode 100755 new mode 100644 index 835fc15b..40282983 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_38.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_38.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_39.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_39.png old mode 100755 new mode 100644 index c0070170..a240984b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_39.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_39.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3a.png old mode 100755 new mode 100644 index 0899bef2..a3d967c8 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3b.png old mode 100755 new mode 100644 index 93bf9ee1..becc877d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3c.png old mode 100755 new mode 100644 index 3fecdf35..0d3d291c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3d.png old mode 100755 new mode 100644 index 6c48699d..952ffca2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3e.png old mode 100755 new mode 100644 index fbbe4c85..4367ba0c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3f.png old mode 100755 new mode 100644 index 926d0218..d1d18fcc Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_3f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_40.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_40.png old mode 100755 new mode 100644 index 2458a680..5003e81d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_40.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_40.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_41.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_41.png old mode 100755 new mode 100644 index 58298847..22542bf1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_41.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_41.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_42.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_42.png old mode 100755 new mode 100644 index 839d9198..8250ba6f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_42.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_42.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_43.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_43.png old mode 100755 new mode 100644 index 21c6b503..60df4ce1 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_43.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_43.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_44.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_44.png old mode 100755 new mode 100644 index 95663db8..3efe8512 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_44.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_44.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_45.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_45.png old mode 100755 new mode 100644 index 92fcc862..edc23218 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_45.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_45.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_46.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_46.png old mode 100755 new mode 100644 index 39472fb3..a6c1c44c Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_46.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_46.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_47.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_47.png old mode 100755 new mode 100644 index 558de75a..67772e63 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_47.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_47.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_48.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_48.png old mode 100755 new mode 100644 index ed67a483..db788063 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_48.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_48.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_49.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_49.png old mode 100755 new mode 100644 index 7d5a0a10..a07c15ab Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_49.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_49.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4a.png old mode 100755 new mode 100644 index a841eb4c..ae61bf17 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4b.png old mode 100755 new mode 100644 index 750672a6..87d9c78e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4c.png old mode 100755 new mode 100644 index 55bafa19..bafd6d2b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4d.png old mode 100755 new mode 100644 index aa57dfb2..efc88148 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4e.png old mode 100755 new mode 100644 index 4bd92c49..10b76075 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4f.png old mode 100755 new mode 100644 index 22262750..9698926a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_4f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_50.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_50.png old mode 100755 new mode 100644 index 803f0092..67ebc51f Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_50.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_50.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_51.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_51.png old mode 100755 new mode 100644 index 83ad4237..83e28f0b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_51.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_51.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_52.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_52.png old mode 100755 new mode 100644 index 36ebb0eb..d651ab26 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_52.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_52.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_53.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_53.png old mode 100755 new mode 100644 index 0d8585a7..896571d5 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_53.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_53.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_54.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_54.png old mode 100755 new mode 100644 index 9da71a31..ad38df3d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_54.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_54.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_55.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_55.png old mode 100755 new mode 100644 index ba4df667..80f1ba40 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_55.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_55.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_56.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_56.png old mode 100755 new mode 100644 index 316ad34a..4db8d121 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_56.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_56.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_57.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_57.png old mode 100755 new mode 100644 index bb1f7572..7b43529d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_57.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_57.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_58.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_58.png old mode 100755 new mode 100644 index 058cc755..8a4e863a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_58.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_58.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_59.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_59.png old mode 100755 new mode 100644 index db94ca98..647bdb8a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_59.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_59.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5a.png old mode 100755 new mode 100644 index 9e786f26..7b3ba636 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5b.png old mode 100755 new mode 100644 index 7b83123b..2ba87b66 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5c.png old mode 100755 new mode 100644 index 22a58fd7..6c7e6bf7 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5d.png old mode 100755 new mode 100644 index 42fd6b02..06575b79 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5e.png old mode 100755 new mode 100644 index 8cc04ec1..5ac99a6a Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5f.png old mode 100755 new mode 100644 index bc0745f5..0841466b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_5f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_60.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_60.png old mode 100755 new mode 100644 index 404a5b9e..02e07615 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_60.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_60.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_61.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_61.png old mode 100755 new mode 100644 index 1f9c6232..8591054e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_61.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_61.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_62.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_62.png old mode 100755 new mode 100644 index ac011d88..63b6c29e Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_62.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_62.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_63.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_63.png old mode 100755 new mode 100644 index 201c022f..f0d6995d Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_63.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_63.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_64.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_64.png old mode 100755 new mode 100644 index 27f9383c..f73979c9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_64.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_64.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_65.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_65.png old mode 100755 new mode 100644 index 8bdee2d9..6bbd2ee4 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_65.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_65.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_66.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_66.png old mode 100755 new mode 100644 index 6f4391bb..8d23c9c6 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_66.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_66.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_67.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_67.png old mode 100755 new mode 100644 index 7550088e..5bc9e836 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_67.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_67.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_68.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_68.png old mode 100755 new mode 100644 index 5eaf5307..726598b2 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_68.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_68.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_69.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_69.png old mode 100755 new mode 100644 index 6cc95a59..b790d77b Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_69.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_69.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6a.png old mode 100755 new mode 100644 index 97a69be3..3e735fee Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6b.png old mode 100755 new mode 100644 index 7e74403f..d03c1993 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6c.png old mode 100755 new mode 100644 index db76ae24..836db1a0 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6d.png old mode 100755 new mode 100644 index 8e1e0534..96387f16 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6e.png old mode 100755 new mode 100644 index d9624115..f8a8dc68 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6e.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6f.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6f.png old mode 100755 new mode 100644 index 7334aa6d..8982e750 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6f.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_6f.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_70.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_70.png old mode 100755 new mode 100644 index a9060ece..60caef99 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_70.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_70.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_71.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_71.png old mode 100755 new mode 100644 index 32b47729..390d4634 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_71.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_71.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_72.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_72.png old mode 100755 new mode 100644 index 88ffb456..c2a6b4d9 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_72.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_72.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_73.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_73.png old mode 100755 new mode 100644 index 5fd89f23..43ec4518 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_73.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_73.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_74.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_74.png old mode 100755 new mode 100644 index d313c644..b4f222db Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_74.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_74.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_75.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_75.png old mode 100755 new mode 100644 index 5b0417a0..54696efd Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_75.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_75.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_76.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_76.png old mode 100755 new mode 100644 index 781fa1bd..3cc3dc96 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_76.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_76.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_77.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_77.png old mode 100755 new mode 100644 index 9f4430b5..948ae218 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_77.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_77.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_78.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_78.png old mode 100755 new mode 100644 index ebd20d7f..78a62590 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_78.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_78.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_79.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_79.png old mode 100755 new mode 100644 index ce4f0e23..dbab5114 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_79.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_79.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7a.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7a.png old mode 100755 new mode 100644 index 656a0d0b..2d127199 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7a.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7a.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7b.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7b.png old mode 100755 new mode 100644 index 58b0964b..81cb1031 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7b.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7b.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7c.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7c.png old mode 100755 new mode 100644 index f928379a..fc6a6262 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7c.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7c.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7d.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7d.png old mode 100755 new mode 100644 index 441c888a..70e8f751 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7d.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7d.png differ diff --git a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7e.png b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7e.png old mode 100755 new mode 100644 index 33d329e0..cf63d5d3 Binary files a/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7e.png and b/mods/homedecor_modpack/signs_lib/extra_fonts/34px/hdf_7e.png differ diff --git a/mods/homedecor_modpack/signs_lib/init.lua b/mods/homedecor_modpack/signs_lib/init.lua old mode 100755 new mode 100644 index 5cec8da7..c503066b --- a/mods/homedecor_modpack/signs_lib/init.lua +++ b/mods/homedecor_modpack/signs_lib/init.lua @@ -14,10 +14,10 @@ signs_lib.wall_sign_model = { fixed = {-0.4375, -0.25, 0.4375, 0.4375, 0.375, 0.5} }, textpos = { - {delta = {x = 0, y = 0.07, z = 0.436}, yaw = 0}, - {delta = {x = 0.436, y = 0.07, z = 0 }, yaw = math.pi / -2}, - {delta = {x = 0, y = 0.07, z = -0.436}, yaw = math.pi}, - {delta = {x = -0.436, y = 0.07, z = 0 }, yaw = math.pi / 2}, + {delta = {x = 0, y = 0.07, z = 0.43 }, yaw = 0}, + {delta = {x = 0.43, y = 0.07, z = 0 }, yaw = math.pi / -2}, + {delta = {x = 0, y = 0.07, z = -0.43 }, yaw = math.pi}, + {delta = {x = -0.43, y = 0.07, z = 0 }, yaw = math.pi / 2}, } } @@ -69,12 +69,12 @@ signs_lib.sign_post_model = { } } +-- Boilerplate to support localized strings if intllib mod is installed. local S -if signs_lib.intllib_modpath then - dofile(signs_lib.intllib_modpath.."/intllib.lua") - S = intllib.Getter(minetest.get_current_modname()) +if minetest.get_modpath("intllib") then + S = intllib.Getter() else - S = function ( s ) return s end + S = function(s) return s end end signs_lib.gettext = S @@ -179,9 +179,7 @@ local CHARDB_FILE = minetest.get_worldpath().."/signs_lib_chardb" -- helper functions to trim sign text input/output local function trim_input(text) - local txt_len = string.len(text) - text_trimmed = string.sub(text, 1, math.min(MAX_INPUT_CHARS, txt_len)) - return text_trimmed + return text:sub(1, math.min(MAX_INPUT_CHARS, text:len())) end -- Returns true if any file differs from cached one. @@ -630,8 +628,7 @@ function signs_lib.receive_fields(pos, formname, fields, sender, lock) sender:get_player_name()) return end - lockstr = "" - if lock then lockstr = "locked " end + local lockstr = lock and "locked " or "" if fields and fields.text and fields.ok then minetest.log("action", S("%s wrote \"%s\" to "..lockstr.."sign at %s"):format( (sender:get_player_name() or ""), diff --git a/mods/homedecor_modpack/signs_lib/locale/de.txt b/mods/homedecor_modpack/signs_lib/locale/de.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/locale/template.txt b/mods/homedecor_modpack/signs_lib/locale/template.txt old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/bg_signs_lib.jpg b/mods/homedecor_modpack/signs_lib/textures/bg_signs_lib.jpg old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_20.png b/mods/homedecor_modpack/signs_lib/textures/hdf_20.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_21.png b/mods/homedecor_modpack/signs_lib/textures/hdf_21.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_22.png b/mods/homedecor_modpack/signs_lib/textures/hdf_22.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_23.png b/mods/homedecor_modpack/signs_lib/textures/hdf_23.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_24.png b/mods/homedecor_modpack/signs_lib/textures/hdf_24.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_25.png b/mods/homedecor_modpack/signs_lib/textures/hdf_25.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_26.png b/mods/homedecor_modpack/signs_lib/textures/hdf_26.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_27.png b/mods/homedecor_modpack/signs_lib/textures/hdf_27.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_28.png b/mods/homedecor_modpack/signs_lib/textures/hdf_28.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_29.png b/mods/homedecor_modpack/signs_lib/textures/hdf_29.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_2f.png b/mods/homedecor_modpack/signs_lib/textures/hdf_2f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_30.png b/mods/homedecor_modpack/signs_lib/textures/hdf_30.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_31.png b/mods/homedecor_modpack/signs_lib/textures/hdf_31.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_32.png b/mods/homedecor_modpack/signs_lib/textures/hdf_32.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_33.png b/mods/homedecor_modpack/signs_lib/textures/hdf_33.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_34.png b/mods/homedecor_modpack/signs_lib/textures/hdf_34.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_35.png b/mods/homedecor_modpack/signs_lib/textures/hdf_35.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_36.png b/mods/homedecor_modpack/signs_lib/textures/hdf_36.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_37.png b/mods/homedecor_modpack/signs_lib/textures/hdf_37.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_38.png b/mods/homedecor_modpack/signs_lib/textures/hdf_38.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_39.png b/mods/homedecor_modpack/signs_lib/textures/hdf_39.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_3f.png b/mods/homedecor_modpack/signs_lib/textures/hdf_3f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_40.png b/mods/homedecor_modpack/signs_lib/textures/hdf_40.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_41.png b/mods/homedecor_modpack/signs_lib/textures/hdf_41.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_42.png b/mods/homedecor_modpack/signs_lib/textures/hdf_42.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_43.png b/mods/homedecor_modpack/signs_lib/textures/hdf_43.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_44.png b/mods/homedecor_modpack/signs_lib/textures/hdf_44.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_45.png b/mods/homedecor_modpack/signs_lib/textures/hdf_45.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_46.png b/mods/homedecor_modpack/signs_lib/textures/hdf_46.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_47.png b/mods/homedecor_modpack/signs_lib/textures/hdf_47.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_48.png b/mods/homedecor_modpack/signs_lib/textures/hdf_48.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_49.png b/mods/homedecor_modpack/signs_lib/textures/hdf_49.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_4f.png b/mods/homedecor_modpack/signs_lib/textures/hdf_4f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_50.png b/mods/homedecor_modpack/signs_lib/textures/hdf_50.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_51.png b/mods/homedecor_modpack/signs_lib/textures/hdf_51.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_52.png b/mods/homedecor_modpack/signs_lib/textures/hdf_52.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_53.png b/mods/homedecor_modpack/signs_lib/textures/hdf_53.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_54.png b/mods/homedecor_modpack/signs_lib/textures/hdf_54.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_55.png b/mods/homedecor_modpack/signs_lib/textures/hdf_55.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_56.png b/mods/homedecor_modpack/signs_lib/textures/hdf_56.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_57.png b/mods/homedecor_modpack/signs_lib/textures/hdf_57.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_58.png b/mods/homedecor_modpack/signs_lib/textures/hdf_58.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_59.png b/mods/homedecor_modpack/signs_lib/textures/hdf_59.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_5f.png b/mods/homedecor_modpack/signs_lib/textures/hdf_5f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_60.png b/mods/homedecor_modpack/signs_lib/textures/hdf_60.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_61.png b/mods/homedecor_modpack/signs_lib/textures/hdf_61.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_62.png b/mods/homedecor_modpack/signs_lib/textures/hdf_62.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_63.png b/mods/homedecor_modpack/signs_lib/textures/hdf_63.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_64.png b/mods/homedecor_modpack/signs_lib/textures/hdf_64.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_65.png b/mods/homedecor_modpack/signs_lib/textures/hdf_65.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_66.png b/mods/homedecor_modpack/signs_lib/textures/hdf_66.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_67.png b/mods/homedecor_modpack/signs_lib/textures/hdf_67.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_68.png b/mods/homedecor_modpack/signs_lib/textures/hdf_68.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_69.png b/mods/homedecor_modpack/signs_lib/textures/hdf_69.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_6f.png b/mods/homedecor_modpack/signs_lib/textures/hdf_6f.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_70.png b/mods/homedecor_modpack/signs_lib/textures/hdf_70.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_71.png b/mods/homedecor_modpack/signs_lib/textures/hdf_71.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_72.png b/mods/homedecor_modpack/signs_lib/textures/hdf_72.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_73.png b/mods/homedecor_modpack/signs_lib/textures/hdf_73.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_74.png b/mods/homedecor_modpack/signs_lib/textures/hdf_74.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_75.png b/mods/homedecor_modpack/signs_lib/textures/hdf_75.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_76.png b/mods/homedecor_modpack/signs_lib/textures/hdf_76.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_77.png b/mods/homedecor_modpack/signs_lib/textures/hdf_77.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_78.png b/mods/homedecor_modpack/signs_lib/textures/hdf_78.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_79.png b/mods/homedecor_modpack/signs_lib/textures/hdf_79.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_7a.png b/mods/homedecor_modpack/signs_lib/textures/hdf_7a.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_7b.png b/mods/homedecor_modpack/signs_lib/textures/hdf_7b.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_7c.png b/mods/homedecor_modpack/signs_lib/textures/hdf_7c.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_7d.png b/mods/homedecor_modpack/signs_lib/textures/hdf_7d.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/hdf_7e.png b/mods/homedecor_modpack/signs_lib/textures/hdf_7e.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_back.png b/mods/homedecor_modpack/signs_lib/textures/signs_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_bottom.png b/mods/homedecor_modpack/signs_lib/textures/signs_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_bottom_locked.png b/mods/homedecor_modpack/signs_lib/textures/signs_bottom_locked.png old mode 100755 new mode 100644 index 9b3d40ef..f90a9d83 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_bottom_locked.png and b/mods/homedecor_modpack/signs_lib/textures/signs_bottom_locked.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_front_locked.png b/mods/homedecor_modpack/signs_lib/textures/signs_front_locked.png old mode 100755 new mode 100644 index 5858c2ab..c638e5cf Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_front_locked.png and b/mods/homedecor_modpack/signs_lib/textures/signs_front_locked.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_green_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_green_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_green_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_green_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_hanging_back.png b/mods/homedecor_modpack/signs_lib/textures/signs_hanging_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_hanging_bottom.png b/mods/homedecor_modpack/signs_lib/textures/signs_hanging_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_hanging_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_hanging_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_hanging_side.png b/mods/homedecor_modpack/signs_lib/textures/signs_hanging_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_hanging_top.png b/mods/homedecor_modpack/signs_lib/textures/signs_hanging_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_locked_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_locked_inv.png old mode 100755 new mode 100644 index b87a3559..3c0554ab Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_locked_inv.png and b/mods/homedecor_modpack/signs_lib/textures/signs_locked_inv.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_metal_back.png b/mods/homedecor_modpack/signs_lib/textures/signs_metal_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_metal_sides.png b/mods/homedecor_modpack/signs_lib/textures/signs_metal_sides.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_metal_tb.png b/mods/homedecor_modpack/signs_lib/textures/signs_metal_tb.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_post_back.png b/mods/homedecor_modpack/signs_lib/textures/signs_post_back.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_post_bottom.png b/mods/homedecor_modpack/signs_lib/textures/signs_post_bottom.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_post_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_post_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_post_side.png b/mods/homedecor_modpack/signs_lib/textures/signs_post_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_post_top.png b/mods/homedecor_modpack/signs_lib/textures/signs_post_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_red_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_red_front.png old mode 100755 new mode 100644 index dce72ce8..f111a649 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_red_front.png and b/mods/homedecor_modpack/signs_lib/textures/signs_red_front.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_red_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_red_inv.png old mode 100755 new mode 100644 index 12b9ed1c..af4597db Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_red_inv.png and b/mods/homedecor_modpack/signs_lib/textures/signs_red_inv.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_side.png b/mods/homedecor_modpack/signs_lib/textures/signs_side.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_side_locked.png b/mods/homedecor_modpack/signs_lib/textures/signs_side_locked.png old mode 100755 new mode 100644 index 0d3ee791..8025a833 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_side_locked.png and b/mods/homedecor_modpack/signs_lib/textures/signs_side_locked.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_top.png b/mods/homedecor_modpack/signs_lib/textures/signs_top.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_top_locked.png b/mods/homedecor_modpack/signs_lib/textures/signs_top_locked.png old mode 100755 new mode 100644 index 6f948bcf..c96c5503 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_top_locked.png and b/mods/homedecor_modpack/signs_lib/textures/signs_top_locked.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_white_black_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_white_black_front.png old mode 100755 new mode 100644 index 10ecca00..f4163f19 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_white_black_front.png and b/mods/homedecor_modpack/signs_lib/textures/signs_white_black_front.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_white_black_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_white_black_inv.png old mode 100755 new mode 100644 index e370dad9..42bb0142 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_white_black_inv.png and b/mods/homedecor_modpack/signs_lib/textures/signs_white_black_inv.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_white_red_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_white_red_front.png old mode 100755 new mode 100644 index f1fb05e8..dae00ffd Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_white_red_front.png and b/mods/homedecor_modpack/signs_lib/textures/signs_white_red_front.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_white_red_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_white_red_inv.png old mode 100755 new mode 100644 index 4ed8d93d..52ac3c87 Binary files a/mods/homedecor_modpack/signs_lib/textures/signs_white_red_inv.png and b/mods/homedecor_modpack/signs_lib/textures/signs_white_red_inv.png differ diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_yellow_front.png b/mods/homedecor_modpack/signs_lib/textures/signs_yellow_front.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/signs_yellow_inv.png b/mods/homedecor_modpack/signs_lib/textures/signs_yellow_inv.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_0.png b/mods/homedecor_modpack/signs_lib/textures/slc_0.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_1.png b/mods/homedecor_modpack/signs_lib/textures/slc_1.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_2.png b/mods/homedecor_modpack/signs_lib/textures/slc_2.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_3.png b/mods/homedecor_modpack/signs_lib/textures/slc_3.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_4.png b/mods/homedecor_modpack/signs_lib/textures/slc_4.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_5.png b/mods/homedecor_modpack/signs_lib/textures/slc_5.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_6.png b/mods/homedecor_modpack/signs_lib/textures/slc_6.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_7.png b/mods/homedecor_modpack/signs_lib/textures/slc_7.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_8.png b/mods/homedecor_modpack/signs_lib/textures/slc_8.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_9.png b/mods/homedecor_modpack/signs_lib/textures/slc_9.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_A.png b/mods/homedecor_modpack/signs_lib/textures/slc_A.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_B.png b/mods/homedecor_modpack/signs_lib/textures/slc_B.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_C.png b/mods/homedecor_modpack/signs_lib/textures/slc_C.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_D.png b/mods/homedecor_modpack/signs_lib/textures/slc_D.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_E.png b/mods/homedecor_modpack/signs_lib/textures/slc_E.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_F.png b/mods/homedecor_modpack/signs_lib/textures/slc_F.png old mode 100755 new mode 100644 diff --git a/mods/homedecor_modpack/signs_lib/textures/slc_n.png b/mods/homedecor_modpack/signs_lib/textures/slc_n.png old mode 100755 new mode 100644