Update settings.lua

This commit is contained in:
Ale32bit 2015-11-13 23:22:40 +01:00
parent 2265ec075a
commit aced2112e6

View file

@ -52,7 +52,7 @@ local function changePassword()
term.setTextColor(colors.black)
local password = read("*")
term.redirect(sPhone.mainTerm)
local fpw = fs.open("/.sPhone/.password","r")
local fpw = fs.open("/.sPhone/config/.password","r")
if sha256.sha256(password) ~= fpw.readLine() then
sPhone.wrongPassword = true
else
@ -115,7 +115,7 @@ local function changePassword()
end
end
if not sPhone.wrongPassword then
local f = fs.open("/.sPhone/.password","w")
local f = fs.open("/.sPhone/config/.password","w")
f.write(sha256.sha256(pwChangeRep))
f.close()
end