diff --git a/mods/ITEMS/mcl_chests/init.lua b/mods/ITEMS/mcl_chests/init.lua index df097b47..01c476ed 100644 --- a/mods/ITEMS/mcl_chests/init.lua +++ b/mods/ITEMS/mcl_chests/init.lua @@ -18,22 +18,22 @@ local tiles_chest_normal_small = {"mcl_chests_normal.png"} local tiles_chest_normal_double = {"mcl_chests_normal_double.png"} if it_is_christmas then - tiles_chest_normal_small = {"mcl_chests_normal_present.png"} - tiles_chest_normal_double = {"mcl_chests_normal_double_present.png"} + tiles_chest_normal_small = {"mcl_chests_normal_present.png^mcl_chests_noise.png"} + tiles_chest_normal_double = {"mcl_chests_normal_double_present.png^mcl_chests_noise_double.png"} end local tiles_chest_trapped_small = {"mcl_chests_trapped.png"} local tiles_chest_trapped_double = {"mcl_chests_trapped_double.png"} if it_is_christmas then - tiles_chest_trapped_small = {"mcl_chests_trapped_present.png"} - tiles_chest_trapped_double = {"mcl_chests_trapped_double_present.png"} + tiles_chest_trapped_small = {"mcl_chests_trapped_present.png^mcl_chests_noise.png"} + tiles_chest_trapped_double = {"mcl_chests_trapped_double_present.png^mcl_chests_noise_double.png"} end local tiles_chest_ender_small = {"mcl_chests_ender.png"} if it_is_christmas then - tiles_chest_ender_small = {"mcl_chests_ender_present.png"} + tiles_chest_ender_small = {"mcl_chests_ender_present.png^mcl_chests_noise.png"} end -- Chest Entity diff --git a/mods/ITEMS/mcl_chests/textures/mcl_chests_noise.png b/mods/ITEMS/mcl_chests/textures/mcl_chests_noise.png new file mode 100644 index 00000000..4cc99c17 Binary files /dev/null and b/mods/ITEMS/mcl_chests/textures/mcl_chests_noise.png differ diff --git a/mods/ITEMS/mcl_chests/textures/mcl_chests_noise_double.png b/mods/ITEMS/mcl_chests/textures/mcl_chests_noise_double.png new file mode 100644 index 00000000..99841391 Binary files /dev/null and b/mods/ITEMS/mcl_chests/textures/mcl_chests_noise_double.png differ