Skip to content

Commit dbf73c1

Browse files
committed
Actually improve kick all this time
1 parent 044049b commit dbf73c1

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
@@ -6441,7 +6441,7 @@ public static IEnumerator KickAll()
64416441
NotificationManager.SendNotification($"<color=grey>[</color><color=red>ERROR</color><color=grey>]</color> Kicking {name} failed. :(");
64426442
}
64436443

6444-
int left = (Time.time - (time - 10f)) < 1f ? 10 : 5;
6444+
int left = (Time.time - (time - 10f)) < 2.5f ? 10 : 5;
64456445

64466446
NotificationManager.SendNotification($"<color=grey>[</color><color=green>SUCCESS</color><color=grey>]</color> {name} has been kicked! Waiting {left} seconds to kick the next person..");
64476447
yield return new WaitForSeconds(left);

PluginInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class PluginInfo
2626
public const string GUID = "org.iidk.gorillatag.iimenu";
2727
public const string Name = "ii's Stupid Menu";
2828
public const string Description = "Created by @crimsoncauldron with love <3";
29-
public const string BuildTimestamp = "2026-02-03T23:44:56Z";
29+
public const string BuildTimestamp = "2026-02-03T23:54:03Z";
3030
public const string Version = "8.2.0";
3131

3232
public const string BaseDirectory = "iisStupidMenu";

0 commit comments

Comments
 (0)