Skip to content

Commit

Permalink
fix: spectator time
Browse files Browse the repository at this point in the history
  • Loading branch information
derkalle4 committed Nov 11, 2024
1 parent e401efe commit 702d8e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MapModifiers+SpectatorOnJoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private void SpectatorOnJoinOnClientPutInServer(int playerSlot)
{
if (mapConfig.MovetoSpectatorOnJoin)
{
AddTimer(5f, () =>
AddTimer(2f, () =>
{
CCSPlayerController? tmpPlayer = new(player.Handle);
if (tmpPlayer == null) return;
Expand Down
2 changes: 1 addition & 1 deletion src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ namespace MapModifiers
{
public partial class MapModifiers : BasePlugin
{
public override string ModuleVersion => "0.0.14";
public override string ModuleVersion => "0.0.15";
}
}

0 comments on commit 702d8e5

Please sign in to comment.