Closed m4rinos closed 4 years ago
In the p5.Score function, on row 10831, I believe the following line
p5.Score
if (arguments[i] && this.parts[i]) {
should be changed to
if (arguments[i]) {
because this.parts is only filled if the condition is met. At the moment now parts can be added to the score.
discourse.processing.org
Wrong repository
In the
p5.Score
function, on row 10831, I believe the following lineif (arguments[i] && this.parts[i]) {
should be changed to
if (arguments[i]) {
because this.parts is only filled if the condition is met. At the moment now parts can be added to the score.
discourse.processing.org