From 79a0b737bab77d7de05bea4477ed616b5dc74e70 Mon Sep 17 00:00:00 2001 From: Grayson Date: Fri, 22 Mar 2024 14:36:37 -0400 Subject: [PATCH] 3.2.1 --- Mods/Buttons.cs | 2 +- Mods/Movement.cs | 2 +- PluginInfo.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Mods/Buttons.cs b/Mods/Buttons.cs index 10c62df..59cac28 100644 --- a/Mods/Buttons.cs +++ b/Mods/Buttons.cs @@ -568,7 +568,7 @@ internal class Buttons new ButtonInfo[] { // Overpowered Mods [17] new ButtonInfo { buttonText = "Exit Overpowered Mods", method =() => Settings.ReturnToMain(), isTogglable = false, toolTip = "Returns you back to the main page."}, - new ButtonInfo { buttonText = "Anti Ban [Buggy]", method =() => Overpowered.AntiBan(), toolTip = "Prevents you from getting banned. This does not unban you. It is not adviced to click this twice."}, + new ButtonInfo { buttonText = "Anti Ban", overlapText = "Anti Ban [Buggy]", method =() => Overpowered.AntiBan(), toolTip = "Prevents you from getting banned. This does not unban you. It is not adviced to click this twice."}, new ButtonInfo { buttonText = "Anti Ban Check", method =() => Overpowered.AntiBanCheck(), isTogglable = false, toolTip = "Tests if the the room is modded or not."}, new ButtonInfo { buttonText = "Set Master", method =() => Experimental.SetMaster(), isTogglable = false, toolTip = "Sets you as master client. Only use this in moddeds."}, diff --git a/Mods/Movement.cs b/Mods/Movement.cs index e198cfb..5cc9a0e 100644 --- a/Mods/Movement.cs +++ b/Mods/Movement.cs @@ -2464,7 +2464,7 @@ public static void StickyHands() if (stickpart == null) { stickpart = GameObject.CreatePrimitive(PrimitiveType.Sphere); - stickpart.transform.localScale = new Vector3(0.333f, 0.333f, 0.333f); + stickpart.transform.localScale = new Vector3(0.15f, 0.15f, 0.15f); stickpart.GetComponent().enabled = false; } if (Time.time > partDelay) diff --git a/PluginInfo.cs b/PluginInfo.cs index a1a6145..a7b1d04 100644 --- a/PluginInfo.cs +++ b/PluginInfo.cs @@ -5,6 +5,6 @@ internal class PluginInfo public const string GUID = "org.iidk.gorillatag.iimenu"; public const string Name = "ii's Stupid Menu"; public const string Description = "Created by @goldentrophy with love <3"; - public const string Version = "3.2.0"; + public const string Version = "3.2.1"; } }