From cb72f0dc55a1f631e4213cbd1671bbe628a2f772 Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 24 Mar 2022 12:43:04 -0400 Subject: [PATCH] Add setting to always show mertail mainly for debugging/screenshots, this looks stupid lmao --- script.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/script.lua b/script.lua index 4fe170c..44668f4 100644 --- a/script.lua +++ b/script.lua @@ -218,7 +218,8 @@ if client.isHost() then ["print_settings"]=false, ["vanilla_partial"]=false, ["tail_enabled"]=true, - ["aquatic_enabled"]=false + ["aquatic_enabled"]=false, + ["aquatic_override"]=false } local savedData=data.loadAll() @@ -385,7 +386,7 @@ MAIN_GROUPS={model.Head, model.RightArm, model.LeftArm, model.RightLeg, model.Le do local can_modify_vanilla=meta.getCanModifyVanilla() local function aquaticTailVisible() - return local_state.aquatic_enabled and player.isUnderwater() end + return local_state.aquatic_enabled and player.isUnderwater() or local_state.aquatic_override end local function vanillaPartial() if local_state.vanilla_enabled then