You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ if serverTime then print("server clock:", serverTime) end
159
159
|`rateLimit`|`RateLimitConfig`| none | Server-side rate limiting on incoming fires. See [Rate Limiting](#rate-limiting). |
160
160
|`validate`|`(data, player) → (bool, string?)`| none | Server-side callback after schema validation. Return `false, "reason"` to drop. Fires `onDrop`. |
161
161
|`maxPayloadBytes`|`number`| none | Maximum bytes a single payload can consume. |
162
-
|`timestamp`|`"frame" \| "offset" \| "full"`| none | Prepends a timestamp to each item. `"frame"` = u8 wrapping counter (1B). `"offset"` = u16 milliseconds into the current second (2B). `"full"` = f64 `os.clock()` (8B). Listeners receive it as a third argument after `sender`. |
162
+
|`timestamp`|`"frame"`, `"offset"`, or `"full"`| none | Prepends a timestamp to each item. `"frame"` = u8 wrapping counter (1B). `"offset"` = u16 milliseconds into the current second (2B). `"full"` = f64 `os.clock()` (8B). Listeners receive it as a third argument after `sender`. |
163
163
164
164
### Packet Methods
165
165
@@ -391,8 +391,8 @@ Variable-length unsigned integer encoding. 1-byte range covers 0–191 (LEB128 o
0 commit comments