From e15a5b56ac5b8184e6ec039f85b232c0cd4dfab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Tue, 4 Feb 2025 23:54:05 +0300 Subject: [PATCH] actually i prefer 2 spaces in lua code thanks --- data/scripts/game.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/scripts/game.lua b/data/scripts/game.lua index 74b2bbc..204cb81 100644 --- a/data/scripts/game.lua +++ b/data/scripts/game.lua @@ -1,8 +1,8 @@ -- called every frame, with constant delta time function game_tick() - -- ctx.initialization_needed is true first frame and every time dynamic reload is performed - if ctx.initialization_needed then - -- ctx.udata persists on reload - ctx.udata = {} - end + -- ctx.initialization_needed is true first frame and every time dynamic reload is performed + if ctx.initialization_needed then + -- ctx.udata persists on reload + ctx.udata = {} + end end