Changed max volume in SetCountingSoundEvent to 200.

This commit is contained in:
2026-03-08 14:08:12 +08:00
parent 9463ee0dfa
commit 5f2817b11e
@@ -56,7 +56,7 @@ public class SetCountingSoundEvent private constructor(
*/ */
public var volume: Int = 100 public var volume: Int = 100
set(value) { set(value) {
require(value in 0..100) { "Volume must be between 0 and 100." } require(value in 0..200) { "Volume must be between 0 and 200." }
field = value field = value
} }