1
0
mirror of https://github.com/ShadowKatStudios/OC-Minitel.git synced 2024-11-23 02:28:05 +11:00

fixed the packet routing question

This commit is contained in:
Izaya 2018-08-17 17:43:05 +10:00
parent f3336f98f1
commit f867737dcd

View File

@ -65,7 +65,7 @@ else -- if not, set the hostname and edit the minitel config file
if ops.firstrun then -- if --firstrun, quit now
io.write("Should this machine route packets?\nThis should be disabled on large networks.\n\nRoute packets? [Y/n]: ")
local rp = io.read:lower():sub(1,1)
local rp = io.read():lower():sub(1,1)
if rp == "n" then
cfg.route = false
end