From 1d5dcfba927b39dec335eae7486f6ab915eca7a8 Mon Sep 17 00:00:00 2001 From: Madiwka Date: Wed, 19 Aug 2020 10:24:48 +0600 Subject: [PATCH] bugs squashed --- main.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 9630c11..7a7000f 100644 --- a/main.lua +++ b/main.lua @@ -765,6 +765,7 @@ function nettest(dt) for i = 1, maxBalls do ts = ts + dt if ts > updaterate then + if ball[1].dx <= 0 then --print (tostring(ball[i].dy)) udp:send(tostring(lastSentKey) .. '|' .. tostring(ball[i].dy) .. @@ -781,7 +782,10 @@ function nettest(dt) '|' .. tostring(ballSpeed) .. '|' .. tostring(paddle_SPEED) .. "|HOST") - print("SENT: " .. lastSentKey) + print("PRIVILEGE SENT: " .. lastSentKey) + else + udp:send(tostring(lastSentKey) ..'|' .. player1.y .. "|HOST") + end ts = 0 end end @@ -842,8 +846,10 @@ function clienttest(dt) ts = ts + dt if ts > updaterate then if ball[1].dx <= 0 then + print("MINOR SENDING") udp:send(tostring(lastSentKey) ..'|' .. player2.y .. "|CLIENT") elseif ball[1].dx > 0 then + print("PRIVILEGED SENDING") udp:send(tostring(lastSentKey) .. '|' .. tostring(ball[1].dy) .. '|' .. tostring(player1.y) ..