Skip to content

Commit 2c1fd48

Browse files
committed
fix: remove unused variables
1 parent d5e47d8 commit 2c1fd48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ControllerBuddy.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ LuaExportActivityNextEvent = function(tCurrent)
155155
client:send(tokenLine..'\n'..'INIT\n'..'-autostart\n'..'local\n'..'-profile\n'..profilePath..'\n'..'EOF\n')
156156

157157
local ackReceived = false
158-
for i = 1, 5 do
159-
local response, recvErr, partial = client:receive('*l')
158+
for _ = 1, 5 do
159+
local response, _, partial = client:receive('*l')
160160
response = response or partial
161161
if response == 'ACK' then
162162
ackReceived = true

0 commit comments

Comments
 (0)