Skip to content

Commit d1aed8e

Browse files
Better ropes
1 parent 0808514 commit d1aed8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Mods/Overpowered.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1992,7 +1992,7 @@ public static void BetaSetRopeVelocity(int RopeId, Vector3 Velocity)
19921992
if (RopeSwingManager.instance.ropes.TryGetValue(RopeId, out GorillaRopeSwing Rope))
19931993
{
19941994
var ClosestNode = Rope.nodes
1995-
.Skip(1) // Can't do the first couple
1995+
.Skip(1)
19961996
.Select((v, i) => new { index = i,
19971997
transform = v,
19981998
distance = Vector3.Distance(GorillaTagger.Instance.bodyCollider.transform.position, v.transform.position)
@@ -2012,7 +2012,7 @@ public static void BetaSetRopeVelocity(int RopeId, Vector3 Velocity)
20122012
}
20132013

20142014
if (Vector3.Distance(ServerPos, ClosestNode.transform.position) < 5f)
2015-
RopeSwingManager.instance.SendSetVelocity_RPC(RopeId, ClosestNode.index, Velocity.ClampMagnitudeSafe(100f), ClosestNode.index > 6);
2015+
RopeSwingManager.instance.SendSetVelocity_RPC(RopeId, ClosestNode.index, Velocity.ClampMagnitudeSafe(100f), true);
20162016
else
20172017
RopeDelay = 0f;
20182018

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-25T06:58:19Z";
8+
public const string BuildTimestamp = "2025-06-25T07:24:04Z";
99
public const string Version = "6.4.0";
1010

1111
#if DEBUG

0 commit comments

Comments
 (0)