Code: Select all
if (A > B) {
return C;
}
Code: Select all
if (A > B) {
return C;
} else {
return D;
}
Moderator: ickputzdirwech
Code: Select all
if (A > B) {
return C;
}
Code: Select all
if (A > B) {
return C;
} else {
return D;
}
I agree. On the other hand, combinators are already an advanced element of the game, and GUI is already getting refined in near future. I'm sure devs will be able to fit this new functionality in a nice way.Tekky wrote:Although it may be nice if the number of combinators necessary is lower, this would also increase the complexity (and the size of the GUI) of the individual combinators.