From 3ecd10b9156d4a25a7c9b2d67d0d7a11aa8aa498 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 10 Jun 2025 19:53:40 +0100 Subject: final final fixes --- client/game.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/game.lua') diff --git a/client/game.lua b/client/game.lua index 9b483a8..30dcd75 100644 --- a/client/game.lua +++ b/client/game.lua @@ -87,7 +87,7 @@ function M.update(dt) local pos if j.pos then pos = Pos(j.pos.x,j.pos.y) end if j.type == 'player' then players[j.name] = {name=j.name,pos=pos,color=j.color,at=t} - msgbox.add(j.name..' joined') + if t > 1 then msgbox.add(j.name..' joined') end elseif j.type == 'unplayer' then players[j.from] = nil msgbox.add(j.from..' left') elseif j.type == 'move' then moveplayer(players[j.from],pos) elseif j.type == 'chunk' then chunks:add(pos,{d=rle.decode(j.d)}) -- cgit v1.2.3