From 1873f105e969744f85e9d9a8832d9b48af440999 Mon Sep 17 00:00:00 2001 From: Michieal Date: Sat, 21 Jan 2023 01:46:46 -0500 Subject: [PATCH] Make swapped textures use modpack setting. --- mcl_crimson_extras/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mcl_crimson_extras/init.lua b/mcl_crimson_extras/init.lua index 2f1c83d..39e5c32 100644 --- a/mcl_crimson_extras/init.lua +++ b/mcl_crimson_extras/init.lua @@ -63,5 +63,6 @@ local function allow_texture_swap() --]] end - -allow_texture_swap() \ No newline at end of file +if SWAP_BASE_TEXTURES then + allow_texture_swap() +end \ No newline at end of file