1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

Remove unused arg

This commit is contained in:
plague006 2019-03-04 16:04:56 -05:00
parent 25bbe67254
commit 0f453a0562

View File

@ -240,7 +240,7 @@ local function toggle(event)
Gui.set_data(frame, data)
end
local function update_gui(_, force_update)
local function update_gui(force_update)
local players = game.connected_players
for i = #players, 1, -1 do
local p = players[i]
@ -308,7 +308,7 @@ end
local function changed_force()
update_gui(nil, true)
update_gui(true)
end