Skip to content

Commit db12308

Browse files
Remove PC bindings for invisible and ghost
1 parent d1aed8e commit db12308

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Mods/Movement.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2086,7 +2086,7 @@ public static void Noclip()
20862086
private static bool invisMonke;
20872087
public static void Invisible()
20882088
{
2089-
bool hit = rightSecondary || Mouse.current.rightButton.isPressed;
2089+
bool hit = rightSecondary;
20902090
if (GetIndex("Non-Togglable Invisible").enabled)
20912091
invisMonke = hit;
20922092
if (invisMonke)
@@ -2108,7 +2108,7 @@ public static void Invisible()
21082108
private static bool ghostMonke;
21092109
public static void Ghost()
21102110
{
2111-
bool hit = rightPrimary || Mouse.current.leftButton.isPressed;
2111+
bool hit = rightPrimary;
21122112
if (GetIndex("Non-Togglable Ghost").enabled)
21132113
ghostMonke = hit;
21142114

PluginInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class PluginInfo
55
public const string GUID = "org.iidk.gorillatag.iimenu";
66
public const string Name = "ii's Stupid Menu";
77
public const string Description = "Created by @goldentrophy with love <3";
8-
public const string BuildTimestamp = "2025-06-25T07:24:04Z";
8+
public const string BuildTimestamp = "2025-06-25T07:26:36Z";
99
public const string Version = "6.4.0";
1010

1111
#if DEBUG

0 commit comments

Comments
 (0)