Hi everyone,
it is 1:00 AM in the morning and my brain is not working that well anymore.
So, I have the following code:
if(missedAttack) {
//do nothing
}else if(greenNumbers) {
//do nothing
}else {
//DO SOMETHING!!
}
However I want to write it in a single “if() { }” code.
I tried a bit with && and || and even with | operators, but I just can’t figure out (right now) which correct conditional combination I should use, so that it becomes a simple if case.