Formatting and Cleanup

This commit is contained in:
ShookEagle
2025-08-10 08:07:58 -05:00
parent d57cefaad2
commit 4f121106f9
2 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ public class GhostDay(BasePlugin plugin, IServiceProvider provider)
public override void Setup() {
CHECK_TRANSMIT.Hook(onTransmit, HookMode.Post);
Server.NextFrameAsync(() => { setVisibility(false); });
Server.NextFrameAsync(() => setVisibility(false));
base.Setup();
}

View File

@@ -181,8 +181,8 @@ public class RocketJumpDay(BasePlugin plugin, IServiceProvider provider)
var sid = controller.SteamID;
var now = Server.CurrentTime;
if (nextNova.TryGetValue(sid, out var next)
&& now < next) { return HookResult.Continue; }
if (nextNova.TryGetValue(sid, out var next) && now < next)
return HookResult.Continue;
nextNova[sid] = now + 0.82f;