HeishaMon
HeishaMon copied to clipboard
timer with value greater than 999s does not work
Hi, thanks for heishamon, it is very useful!
I found a bug in the rules implementation:
Does not work (cannot be saved in the gui)
on System#Boot then
setTimer(1, 1000);
end
on timer=1 then
#test = 1;
end
Works
on System#Boot then
setTimer(1, 999);
end
on timer=1 then
#test = 1;
end
I think there is a overflow for values > 999s