mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-06 04:42:57 -08:00
Formatting and Cleanup
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user