From f8d86c4f1a80464f18e122705649b28125edad1a Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 26 Jul 2017 22:39:16 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20the=20=E2=80=9Chalf=E2=80=9D=20xpanes?= =?UTF-8?q?=20images?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mods/ITEMS/xpanes/init.lua | 8 ++++---- .../textures/xpanes_pane_half_glass_black.png | Bin 211 -> 0 bytes .../textures/xpanes_pane_half_glass_blue.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_brown.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_cyan.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_gray.png | Bin 201 -> 0 bytes .../textures/xpanes_pane_half_glass_green.png | Bin 202 -> 0 bytes .../xpanes_pane_half_glass_light_blue.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_lime.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_magenta.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_natural.png | Bin 150 -> 0 bytes .../textures/xpanes_pane_half_glass_orange.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_pink.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_purple.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_red.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_silver.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_white.png | Bin 202 -> 0 bytes .../textures/xpanes_pane_half_glass_yellow.png | Bin 202 -> 0 bytes .../xpanes/textures/xpanes_pane_half_iron.png | Bin 191 -> 0 bytes 19 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_black.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_blue.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_brown.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_cyan.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_gray.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_green.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_light_blue.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_lime.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_magenta.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_natural.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_orange.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_pink.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_purple.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_red.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_silver.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_white.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_yellow.png delete mode 100644 mods/ITEMS/xpanes/textures/xpanes_pane_half_iron.png diff --git a/mods/ITEMS/xpanes/init.lua b/mods/ITEMS/xpanes/init.lua index e95a3814f..1b540ee69 100644 --- a/mods/ITEMS/xpanes/init.lua +++ b/mods/ITEMS/xpanes/init.lua @@ -109,7 +109,7 @@ function xpanes.register_pane(name, def) inventory_image = def.inventory_image, wield_image = def.wield_image, paramtype2 = "facedir", - tiles = {def.textures[3], def.textures[3], def.textures[1]}, + tiles = {def.textures[3], def.textures[2], def.textures[1]}, use_texture_alpha = def.use_texture_alpha, groups = flatgroups, drop = drop, @@ -137,7 +137,7 @@ function xpanes.register_pane(name, def) sunlight_propagates = true, description = def.description, _doc_items_create_entry = false, - tiles = {def.textures[3], def.textures[3], def.textures[1]}, + tiles = {def.textures[3], def.textures[2], def.textures[1]}, use_texture_alpha = def.use_texture_alpha, groups = groups, drop = "xpanes:" .. name .. "_flat", @@ -179,7 +179,7 @@ local pane = function(description, node, append) xpanes.register_pane("pane"..append, { description = description, _doc_items_longdesc = "Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.", - textures = {texture1, "xpanes_pane_half_glass"..append..".png", "xpanes_top_glass"..append..".png"}, + textures = {texture1, texture1, "xpanes_top_glass"..append..".png"}, use_texture_alpha = true, inventory_image = texture1, wield_image = texture1, @@ -199,7 +199,7 @@ end xpanes.register_pane("bar", { description = "Iron Bars", _doc_items_longdesc = "Iron bars neatly connect to their neighbors as you build them.", - textures = {"xpanes_pane_iron.png","xpanes_pane_half_iron.png","xpanes_top_iron.png"}, + textures = {"xpanes_pane_iron.png","xpanes_pane_iron.png","xpanes_top_iron.png"}, inventory_image = "xpanes_pane_iron.png", wield_image = "xpanes_pane_iron.png", groups = {pickaxey=1}, diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_black.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_black.png deleted file mode 100644 index 335fde22b579661f0dcb97e8bc6a212e42677690..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdnK1d_r6$B_)-Wm34G(iCMKBhvNk0MvONnh@JJVEGgb)F%24jIuZ^WW0|Nttr>mdK II;Vst08#roNB{r; diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_blue.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_blue.png deleted file mode 100644 index 11048a84ad2ac1a449a0032adacefe3b8c0a02ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34GF^N%~fq@~;)5S5Qf-yNkAVnY~L?|Ie zpv=T9#7xX6Q6PxV)QrzGFfqY|m$fNDknLH3fkCoBo3TQW8jqJi8+Wr(%fe#|coJtA zY9zl9YLPtgglB70mdKI;Vst0J@w# A761SM diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_brown.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_brown.png deleted file mode 100644 index 1af669ddd50cfcb3b74a899256bbd4af2855cfdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G!mGB7Z(l?3?(|NsBL>VMpgNsQ_Y3=DCeE{-7;jL8WCDFPuOLJ27X zWhQ1JW@1K(0zrJHW_+fBi3ujWtW61mY|jD=43Y)fj1_{^c)SGKxSN$)79Lx`lQ_dr zBl(3;i{yzXJX@P0FWz9uS=rUy?LBLDH#Y;Tp`7-m!nyky7#J8lUHx3vIVCg!01?PK A4FCWD diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_cyan.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_cyan.png deleted file mode 100644 index bc17799e9cfc6fbf3e9041a5542f2aa95daef00c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G!{4PT?gCas=;=`6h2cHHan-Pq69#X=^p-TovB?o%TJ1z$p$nrbj7x zjWJg4fbcAa#t0Bx@;nIyKpdg+bsD9R)B}}Z&@Bc`QcBF=1B0h6Fbiu3*aKn=hK4Ae zT9CnT3mE+W6<#kAYdOBkOqEK2#M_?7hb54elfq@~;)5S5Qf-yNkAVnY~L?|Ie zpv=T9#7xX6Q6PxV)QrzGFfqY|m$fNDknLH3fkCoBo3TQW8jqJi8+Wr(%fe#|coJtA zY9zl9YLPtgglB70mdKI;Vst0HDu2 A-2eap diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_light_blue.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_light_blue.png deleted file mode 100644 index 4fd4299536d423d61df3b0d9254bf9ec04d09c36..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G7hb54elfq@~;)5S5Qf-yNkAVnY~L?|Ie zpv=T9#7xX6Q6PxV)QrzGFfqY|m$fNDknLH3fkCoBo3TQW8jqJi8+Wr(%fe#|coJtA zY9zl9YLPtgglB70mdKI;Vst08TJG AG5`Po diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_lime.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_lime.png deleted file mode 100644 index 1a27490999866a202cb61421a2570cf4307dcd08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G+Y$ZW{!TEakt!I+#NkRlKgB9xFK zP-bElVkTykC=kSFYQ|?8n3!O~%i5G6$o4G2z#v(m%~&BwjmJx%jk{T?W#O>}Jc%<5 zHIiQlwMd?L!n3t0^5PAaoRwYO-QKficXKna8p>&3DxABYfq{X+)78&qol`;+0OoHy Aga7~l diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_natural.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_natural.png deleted file mode 100644 index 949ca8a64455fbaec6a7cd7cbb50e7612af32b91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 150 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRdCT0c(hNQXTpBNYzcmjMvT<_oiz`(%p|NsAu zS8gddo>;-az`#@z(iCMKBhvNk0MvONnhFh~|?Ggb&v&~aFfcH9y85}Sb4q9e0C}c5 A#Q*>R diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_red.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_red.png deleted file mode 100644 index 1d654ef65ce512f0e01f1e779ca5c0979cc74171..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34GmT#^WW>#@(#cvhdgfp2Qi3 z8p$t&S|m?A;n~_0dGQ8I&dRRtZtq#MySW)y4dt{i70%tyz`(%Z>FVdQ&MBb@0Qjss AvH$=8 diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_silver.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_silver.png deleted file mode 100644 index 97b46ebf2d722e411d2d009ed8bb99378e87863d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G<4jtHM zYHGTF?=D+g+X7=&aRvqkwvr&f;Q#;s=l>7hb54elfq@~;)5S5Qf-yNkAVnY~L?|Ie zpv=T9#7xX6Q6PxV)QrzGFfqY|m$fNDknLH3fkCoBo3TQW8jqJi8+Wr(%fe#|coJtA zY9zl9YLPtgglB70mdKI;Vst03Omi A+W-In diff --git a/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_white.png b/mods/ITEMS/xpanes/textures/xpanes_pane_half_glass_white.png deleted file mode 100644 index bb6dcc85303ce615853955cb006a07d78058cb6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdoVYd_r6$B_)-Wm34G|ZyKZ7I?tadoy#Bz5lNIUykddu>h&uvq8)KP~YhXI{Uqyvt{ll4Cc to`R3T{SEH<$^