Properly delegate setChanged in combined container slot

This commit is contained in:
DBotThePony 2025-02-24 16:37:39 +07:00
parent 96d902bc98
commit d0ee1fb0e3
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -34,6 +34,10 @@ class CombinedContainer(containers: Stream<Pair<Container, Iterable<Int>>>) : IM
override val container: Container
get() = this@CombinedContainer
override fun setChanged() {
outer.setChanged()
}
override fun component1(): Int {
return super.component1()
}