Skip to content

Commit 85d6599

Browse files
Fix fling on grab, true final 6.7.0
1 parent 08a6951 commit 85d6599

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Mods/Overpowered.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ public static void FlingOnGrab()
619619
if (!rig.isLocal) /*&& rig.transform.position.x < 80)*/
620620
{
621621
if (rig.leftHandLink.grabbedPlayer == NetworkSystem.Instance.LocalPlayer || rig.rightHandLink.grabbedPlayer == NetworkSystem.Instance.LocalPlayer)
622-
GetNetworkViewFromVRRig(VRRig.LocalRig).SendRPC("DroppedByPlayer", GetPlayerFromVRRig(rig), new object[] { (Vector3.up + (GorillaTagger.Instance.bodyCollider.transform.forward * -1)).normalized * 20f });
622+
GetNetworkViewFromVRRig(VRRig.LocalRig).SendRPC("DroppedByPlayer", GetPlayerFromVRRig(rig), new object[] { (Vector3.up + (GorillaTagger.Instance.bodyCollider.transform.forward * 1)).normalized * 20f });
623623
}
624624
}
625625
}

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-07-15T01:05:26Z";
8+
public const string BuildTimestamp = "2025-07-15T01:12:42Z";
99
public const string Version = "6.7.0";
1010

1111
public const string BaseDirectory = "iisStupidMenu";

0 commit comments

Comments
 (0)