Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit 4628d74

Browse files
committed
format
1 parent 5a7c860 commit 4628d74

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/kotlin/dev/tobynguyen27/sense/sync/container/ManagedFieldContainer.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class ManagedFieldContainer(val owner: AutoManagedBlockEntity) {
6262
fun collectDirtyFields(): CompoundTag? {
6363
var tag: CompoundTag? = null
6464

65-
for(accessor in syncedFields) {
66-
if(!accessor.isChanged()) continue
67-
if(tag == null) tag = CompoundTag()
65+
for (accessor in syncedFields) {
66+
if (!accessor.isChanged()) continue
67+
if (tag == null) tag = CompoundTag()
6868
accessor.saveNbt(tag)
6969
accessor.updateLastValue()
7070
}

0 commit comments

Comments
 (0)