PDA

View Full Version : Scrip error in combattracker for 3.5



rule of three
April 30th, 2010, 10:20
I've found a bug on your 3.5 ruleset : there was a error (which block mouse scrolling and send an error to the console) when the GM try to click on the active button of a npc or pc.

The bug is connected to combattrackeractive.lua

Change :
function onClickRelease(button, x, y)
if not state then
window.windowlist.requestActivation(window);
end
end

function onClickRelease(button, x, y)
if not state then
window.getTracker().requestActivation(window);
end
end

:)