diff --git a/doc/en/scripting/events.md b/doc/en/scripting/events.md index ccc61673..8dcd1a06 100644 --- a/doc/en/scripting/events.md +++ b/doc/en/scripting/events.md @@ -38,7 +38,13 @@ Called on random block update (grass growth) function on_blocks_tick(tps: int) ``` -Called tps (20) times per second. +Called tps (20) times per second. Use 1/tps instead of `time.delta()`. + +```lua +function on_player_tick(playerid: int, tps: int) +``` + +Called tps (20) times per second. Use 1/tps instead of `time.delta()`. ## Item events diff --git a/doc/ru/scripting/events.md b/doc/ru/scripting/events.md index 31c958fc..6d908459 100644 --- a/doc/ru/scripting/events.md +++ b/doc/ru/scripting/events.md @@ -38,7 +38,13 @@ function on_random_update(x, y, z) function on_blocks_tick(tps: int) ``` -Вызывается tps (20) раз в секунду +Вызывается tps (20) раз в секунду. Используйте 1/tps вместо `time.delta()`. + +```lua +function on_player_tick(playerid: int, tps: int) +``` + +Вызывается tps (20) раз в секунду. Используйте 1/tps вместо `time.delta()`. ## События предметов