setEqual method

Score setEqual(
  1. Score score
)

sets this score equal to another

Implementation

Score setEqual(Score score) {
  return addCommandRet(
    Command(
      'scoreboard players operation ${isEqual(score).getString()}',
    ),
  );
}