multiplyByScore method

Score multiplyByScore(
  1. Score score
)

sets this score to the result of the multiplication

Implementation

Score multiplyByScore(Score score) {
  return addCommandRet(
    Command(
      'scoreboard players operation ${toString()} *= ${toString(entity: score.entity, score: score.score)}',
    ),
  );
}