I've run into a really weird bug. I have the following code running in a function:
if (throwsThisRound % 3 == 0){
debug('do it');
throwsThisRound = 0;
players[button.playerNum].throwsThisRound = 0;
changeTurn();
};
This works perfectly fine. However, if I were to remove the debug function, which is just a function which runs Ti.API.debug(param), nothing in the if statement runs. How can this happen? I have literally commented out the code, run my app, and uncommented the code and run again. I can reproduce this every time. Very strange.