document tick-interval

This commit is contained in:
MihailRis
2025-12-08 19:21:50 +03:00
committed by ShiftyX1
parent f1d9f1bf60
commit db09672e50
4 changed files with 23 additions and 11 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ Called on random block update (grass growth)
function on_blocks_tick(tps: int)
```
Called tps (20) times per second. Use 1/tps instead of `time.delta()`.
Called tps (20 / tick-interval) times per second. Use 1/tps instead of `time.delta()`.
```lua
function on_block_tick(x, y, z, tps: number)