Hi again!
As with the other extension, i'm using this one in FGU and kept finding this error
After a few test I found out that it was because of this extension and managed to go around it.
If any one is having the same problem, the problem lies in the file specified in the error (
ct/scripts/ct_entry.lua). Changing this (on
line 114):
Code:
-- Update list information (global subsection toggles)
windowlist.onVisibilityToggle();
windowlist.onEntrySectionToggle();
for this:
Code:
-- Update list information (global subsection toggles)
if windowlist ~= nil then
windowlist.onVisibilityToggle();
windowlist.onEntrySectionToggle();
end
solves it as far as I know (yet it might break something else ;))
Once again, thank you very much Kelrugem for this amazing work. I've tried to read some documentation on the scripting language here:
https://www.fantasygrounds.com/refdoc/windowlist.xcp, but I cannot find what 'onVisibilityToggle()' and 'onEntrySectionToggle()' do. Do you know where I can find it?
See you guys,
Raust.