fix possible lua errors

This commit is contained in:
Eduardo Bart
2012-01-06 22:18:08 -02:00
parent a4ee590b47
commit 0f3bac595e
2 changed files with 10 additions and 5 deletions

View File

@@ -56,8 +56,8 @@ function EnterGame.create()
local account = Settings.get('account')
local password = Settings.get('password')
local host = Settings.get('host')
local port = tonumber(Settings.get('port'))
local autologin = toboolean(Settings.get('autologin'))
local port = Settings.getNumber('port')
local autologin = Settings.getBoolean('autologin')
enterGame:getChildById('accountNameLineEdit'):setText(account)
enterGame:getChildById('accountPasswordLineEdit'):setText(password)
@@ -90,7 +90,7 @@ function EnterGame.doLogin()
EnterGame.account = enterGame:getChildById('accountNameLineEdit'):getText()
EnterGame.password = enterGame:getChildById('accountPasswordLineEdit'):getText()
EnterGame.host = enterGame:getChildById('serverHostLineEdit'):getText()
EnterGame.port = enterGame:getChildById('serverPortLineEdit'):getText()
EnterGame.port = tonumber(enterGame:getChildById('serverPortLineEdit'):getText())
EnterGame.hide()
Settings.set('host', EnterGame.host)