if(src.mayuri && src.health <=0 && src.wound>=100||src.mayuri && src.wound>=200||src.shonshui && src.health <=0 && src.wound>=100||src.shonshui && src.wound>=200||src.kenpachi && src.health <=0 && src.wound>=100||src.kenpachi && src.wound>=200)
Problem description:
When I kept each if statement separate and checked Self CPU it was lower than when I combined them to do the same thing. Does "||" cause more lag or am I just having bad luck?
if( (mayuri || shonshui || kenpachi) && ( (health<=0 && wound>=100) || wound>=200 ) )
PS. Notice that you don't have to write