If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
There appears to be a bug in actions.c function check_action_conditions: the variable exit is assigned to but never used, this causes alerts for wrong actions to be issued. Inserting if(exit)break; in the end of the while() loop fixes this issue.
Comment