1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-04-13 11:30:40 +02:00

Merge pull request #108 from ComfyFactory/mtn_v3_fix

minor tweaks to mtn v3
This commit is contained in:
Gerkiz 2021-08-21 12:48:09 +02:00 committed by GitHub
commit e5dd5d8be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,23 +101,21 @@ commands.add_command(
local player = game.player local player = game.player
local param = tonumber(cmd.parameter) local param = tonumber(cmd.parameter)
if player then if player and player.valid then
if player ~= nil then p = player.print
p = player.print if not player.admin then
if not player.admin then p("[ERROR] You're not admin!", Color.fail)
p("[ERROR] You're not admin!", Color.fail) return
return
end
if not param then
return
end
p('Queue speed set to: ' .. param)
Task.set_queue_speed(param)
else
p = log
p('Queue speed set to: ' .. param)
Task.set_queue_speed(param)
end end
if not param then
return
end
p('Queue speed set to: ' .. param)
Task.set_queue_speed(param)
else
p = log
p('Queue speed set to: ' .. param)
Task.set_queue_speed(param)
end end
end end
) )
@ -164,18 +162,16 @@ commands.add_command(
local p local p
local player = game.player local player = game.player
if player then if player and player.valid then
if player ~= nil then p = player.print
p = player.print if not player.admin then
if not player.admin then p("[ERROR] You're not admin!", Color.fail)
p("[ERROR] You're not admin!", Color.fail) return
return
end
p(Task.get_queue_speed())
else
p = log
p(Task.get_queue_speed())
end end
p(Task.get_queue_speed())
else
p = log
p(Task.get_queue_speed())
end end
end end
) )