From f9a59c1738f23b7049c94b66c800eee1585a682b Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 23 Jan 2015 22:24:25 +0100 Subject: [PATCH] rename kitchen and bathroom related files to their actual contained functionality --- homedecor/{misc-bathroom.lua => bathroom_furniture.lua} | 0 .../{furniture_bathroom.lua => bathroom_sanitation.lua} | 0 homedecor/init.lua | 9 +++++---- homedecor/{refrigerator.lua => kitchen_appliances.lua} | 0 homedecor/{kitchen_cabinet.lua => kitchen_furniture.lua} | 0 5 files changed, 5 insertions(+), 4 deletions(-) rename homedecor/{misc-bathroom.lua => bathroom_furniture.lua} (100%) rename homedecor/{furniture_bathroom.lua => bathroom_sanitation.lua} (100%) rename homedecor/{refrigerator.lua => kitchen_appliances.lua} (100%) rename homedecor/{kitchen_cabinet.lua => kitchen_furniture.lua} (100%) diff --git a/homedecor/misc-bathroom.lua b/homedecor/bathroom_furniture.lua similarity index 100% rename from homedecor/misc-bathroom.lua rename to homedecor/bathroom_furniture.lua diff --git a/homedecor/furniture_bathroom.lua b/homedecor/bathroom_sanitation.lua similarity index 100% rename from homedecor/furniture_bathroom.lua rename to homedecor/bathroom_sanitation.lua diff --git a/homedecor/init.lua b/homedecor/init.lua index 8a37595b..0a40eddf 100644 --- a/homedecor/init.lua +++ b/homedecor/init.lua @@ -127,10 +127,12 @@ dofile(homedecor.modpath.."/doors_and_gates.lua") dofile(homedecor.modpath.."/fences.lua") dofile(homedecor.modpath.."/lighting.lua") -dofile(homedecor.modpath.."/kitchen_cabinet.lua") -dofile(homedecor.modpath.."/refrigerator.lua") -dofile(homedecor.modpath.."/misc-bathroom.lua") +dofile(homedecor.modpath.."/kitchen_appliances.lua") +dofile(homedecor.modpath.."/kitchen_furniture.lua") + +dofile(homedecor.modpath.."/bathroom_furniture.lua") +dofile(homedecor.modpath.."/bathroom_sanitation.lua") dofile(homedecor.modpath.."/laundry.lua") @@ -146,7 +148,6 @@ dofile(homedecor.modpath.."/crafts.lua") dofile(homedecor.modpath.."/furniture.lua") dofile(homedecor.modpath.."/furniture_medieval.lua") -dofile(homedecor.modpath.."/furniture_bathroom.lua") dofile(homedecor.modpath.."/furniture_recipes.lua") dofile(homedecor.modpath.."/climate-control.lua") diff --git a/homedecor/refrigerator.lua b/homedecor/kitchen_appliances.lua similarity index 100% rename from homedecor/refrigerator.lua rename to homedecor/kitchen_appliances.lua diff --git a/homedecor/kitchen_cabinet.lua b/homedecor/kitchen_furniture.lua similarity index 100% rename from homedecor/kitchen_cabinet.lua rename to homedecor/kitchen_furniture.lua