Remove operator modifier on blockstate#set alias

This commit is contained in:
DBotThePony 2025-03-30 18:51:25 +07:00
parent 339cacc545
commit c5c7e1bac4
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -127,7 +127,7 @@ operator fun StateHolder<*, *>.get(property: BlockRotationFreedom): BlockRotatio
return getValue(property.property)
}
operator fun <S : StateHolder<*, *>, T : Comparable<T>> S.set(property: Property<T>, value: T): S {
fun <S : StateHolder<*, *>, T : Comparable<T>> S.set(property: Property<T>, value: T): S {
return setValue(property, value) as S
}