Error in settings.lua

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
zbynio
Posts: 36
Joined: Thu Feb 04, 2010 8:16 am
Location: POLAND

Error in settings.lua

#1 Post by zbynio »

Hi

bot version 444

this is bad:
local function setLanguage(_name)
include(getExecutionPath() .. "/language/" .. _name .. ".lua");
end

this is correct:
local function setLanguage(_name)
include("/language/" .. _name .. ".lua");
end

change it and language choice work fine (line 994)
User avatar
Administrator
Site Admin
Posts: 5353
Joined: Sat Jan 05, 2008 4:21 pm

Re: Error in settings.lua

#2 Post by Administrator »

Thanks. Not sure how that bug crept in. My guess is that it came with the change to automatically detect and use the same language as the game client, so it was overlooked. It'll be in the next commit.
Post Reply