Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketasaja committed Feb 15, 2025
1 parent ce6da65 commit 73a1bf7
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/config/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ The generated remotes will be `ZAP_RELIABLE` and `ZAP_UNRELIABLE` respectively.

The generated remotes will change to be `PACKAGE_NAME_RELIABLE` and `PACKAGE_NAME_UNRELIABLE` respectively.


## `remote_folder`

This option changes the name folder that Zap's remotes are placed inside of ReplicatedStorage.
Expand Down Expand Up @@ -180,13 +179,13 @@ This can be mitigated by firing remotes to the server at a timed rate, so as to
local Timer = 0

RunService.Heartbeat:Connect(function(DeltaTime)
Timer += DeltaTime
Timer += DeltaTime

-- Only send events 60 times per second
if Timer >= 1 / 60 then
Timer = 0
Zap.SendEvents()
end
-- Only send events 60 times per second
if Timer >= 1 / 60 then
Timer = 0
Zap.SendEvents()
end
end)
```

Expand Down

0 comments on commit 73a1bf7

Please sign in to comment.