I managed to fix this error by commenting out the if-else block at the beginning of <zomnibus>/hooks/hooks-opt-in-adventurers.lua, leaving only line 24 uncommented.The Revanchist wrote:It would seem I'm having a bit of an issue with the single (compilation of?) most useful addon(s) in ToME.
This is probably the first time I've had an error with it, and it's quite upsetting. I've come to depend on it...Code: Select all
Lua Error: /engine/utils.lua:1534: cannot open /data-opt_in_adventurers/timed_effects.lua: No error
For some reason the fs.exists check returns false, even though /data-zomnibus apparently exists (?), making the script load the latter file which doesn't exist.
This is running on Arch Linux x64, Steam version.
So old:
Code: Select all
if fs.exists('/data-zomnibus') then
TimedEffects:loadDefinition('/data-zomnibus/opt_in_adventurers_timed_effects.lua')
else
TimedEffects:loadDefinition('/data-opt_in_adventurers/timed_effects.lua')
end
Code: Select all
--if fs.exists('/data-zomnibus') then
TimedEffects:loadDefinition('/data-zomnibus/opt_in_adventurers_timed_effects.lua')
--else
-- TimedEffects:loadDefinition('/data-opt_in_adventurers/timed_effects.lua')
--end