Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Grayson authored and Grayson committed Mar 22, 2024
1 parent cc1d50c commit 79a0b73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Mods/Buttons.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <color=grey>[</color><color=red>Buggy</color><color=grey>]</color>", 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 <color=grey>[</color><color=red>Buggy</color><color=grey>]</color>", 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."},
Expand Down
2 changes: 1 addition & 1 deletion Mods/Movement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Renderer>().enabled = false;
}
if (Time.time > partDelay)
Expand Down
2 changes: 1 addition & 1 deletion PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}

0 comments on commit 79a0b73

Please sign in to comment.