Code review comment for lp:~widelands-dev/widelands/bug-1818073-worker

Revision history for this message
Benedikt Straub (nordfriese) wrote :

All four are just bad coding style IMHO. Setting something to itself or doing += 0 is ugly, and empty conditional blocks and repetitive conditions should be avoided.

Suggestion:

if (amount > 0) {
    if (amount <= 2) {
        totalchance += 6;
    } else if (amount <= 4) {
        totalchance += 4;
    } else if (amount <= 6) {
        totalchance += 2;
    }
}

« Back to merge proposal