From e603a08f3c353184eb42e3385cb9fc69bcf9e15c Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 25 Jul 2020 15:26:22 -0400 Subject: [PATCH] Correct potion color scheme --- .../mcl_bows/textures/mcl_bows_arrow_overlay.png | Bin 0 -> 317 bytes mods/ITEMS/mcl_potions/tipped_arrow.lua | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 mods/ITEMS/mcl_bows/textures/mcl_bows_arrow_overlay.png diff --git a/mods/ITEMS/mcl_bows/textures/mcl_bows_arrow_overlay.png b/mods/ITEMS/mcl_bows/textures/mcl_bows_arrow_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2ca26c58a8cc478a025a0f8708c1113600c96466 GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^N+8U^1|+TAxeoy;#^NA%Cx&(BWL^R}7O4@QX}-P; zT0k}j17mw80}DtA5K93u0|V0nCb)>w0%imoB&oQmIS)u}_H=O!iQr65kYHV`XduM| zCPMfc#r5O cbjafXhKP~Pfv%lW*&uIty85}Sb4q9e0ODF%DgXcg literal 0 HcmV?d00001 diff --git a/mods/ITEMS/mcl_potions/tipped_arrow.lua b/mods/ITEMS/mcl_potions/tipped_arrow.lua index 9ebac4845..3e935ab39 100644 --- a/mods/ITEMS/mcl_potions/tipped_arrow.lua +++ b/mods/ITEMS/mcl_potions/tipped_arrow.lua @@ -18,12 +18,12 @@ local function arrow_image(colorstring, opacity) if not opacity then opacity = 127 end - return {"mcl_bows_arrow.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity), - "mcl_bows_arrow.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity), + return {"mcl_bows_arrow.png^[transformFX^(mcl_bows_arrow_overlay.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity)..")", + "mcl_bows_arrow.png^[transformFX^(mcl_bows_arrow_overlay.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity)..")", "mcl_bows_arrow_back.png^[colorize:"..colorstring..":"..tostring(opacity), "mcl_bows_arrow_front.png^[colorize:"..colorstring..":"..tostring(opacity), - "mcl_bows_arrow.png^[colorize:"..colorstring..":"..tostring(opacity), - "mcl_bows_arrow.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity)} + "mcl_bows_arrow.png^(mcl_bows_arrow_overlay.png^[colorize:"..colorstring..":"..tostring(opacity)..")", + "mcl_bows_arrow.png^[transformFX^(mcl_bows_arrow_overlay.png^[transformFX^[colorize:"..colorstring..":"..tostring(opacity)..")"} end