Fix issue #90
This commit is contained in:
parent
68f9af376f
commit
8119428d41
|
@ -20,6 +20,10 @@ function string:starts(start)
|
||||||
return string.sub(self, 1, #start) == start
|
return string.sub(self, 1, #start) == start
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function string.ends(s, test)
|
||||||
|
return test =='' or string.sub(s,-string.len(test)) == test
|
||||||
|
end
|
||||||
|
|
||||||
function string:trim()
|
function string:trim()
|
||||||
return string.match(self, '^%s*(.*%S)') or ''
|
return string.match(self, '^%s*(.*%S)') or ''
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,7 +10,7 @@ function g_game.isCreatureNameFormatEnabled()
|
||||||
end
|
end
|
||||||
|
|
||||||
function g_game.chooseRsa(host)
|
function g_game.chooseRsa(host)
|
||||||
if host:match('.*\.tibia\.com') or host:match('.*\.cipsoft\.com') then
|
if string.ends(host, '.tibia.com') or string.ends(host, '.cipsoft.com') then
|
||||||
g_game.setRsa(CIPSOFT_RSA)
|
g_game.setRsa(CIPSOFT_RSA)
|
||||||
else
|
else
|
||||||
g_game.setRsa(OTSERV_RSA)
|
g_game.setRsa(OTSERV_RSA)
|
||||||
|
|
Loading…
Reference in New Issue