mirror of
https://github.com/edubart/otclient.git
synced 2025-10-14 11:34:54 +02:00
fix possible lua errors
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user