Skip to content

Commit a34724b

Browse files
committed
Make mutable
1 parent ddd07cd commit a34724b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val javaVersion: Int = 21
1515

1616
allprojects {
1717
group = "com.noxcrew.interfaces"
18-
version = "1.1.4-SNAPSHOT"
18+
version = "1.1.5-SNAPSHOT"
1919

2020
tasks.withType<JavaCompile> {
2121
sourceCompatibility = javaVersion.toString()

interfaces/src/main/kotlin/com/noxcrew/interfaces/interfaces/AbstractInterfaceBuilder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public abstract class AbstractInterfaceBuilder<P : Pane, I : Interface<P>> inter
4040
public var persistAddedItems: Boolean = false
4141

4242
/** Keeps items that were previously in the inventory before opening the view. */
43-
public val inheritExistingItems: Boolean = false
43+
public var inheritExistingItems: Boolean = false
4444

4545
/** The properties object to use for the created interface. */
4646
public val properties: InterfaceProperties<P>

0 commit comments

Comments
 (0)