Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

chunk pos

c7672eb
Select commit
Loading
Failed to load commit list.
Open

Light Engine #213

chunk pos
c7672eb
Select commit
Loading
Failed to load commit list.
codefactor.io / CodeFactor succeeded Oct 1, 2025 in 3s

13 issues fixed. 2 issues found.

Annotations

Check warning on line 193 in src/main/kotlin/io/github/dockyardmc/entity/Entity.kt

See this annotation in the file changed.

@codefactor-io codefactor-io / CodeFactor

src/main/kotlin/io/github/dockyardmc/entity/Entity.kt#L193

Parentheses in (this.location) are unnecessary and can be replaced with: this.location. (detekt.UnnecessaryParentheses)

Check warning on line 25 in src/main/kotlin/io/github/dockyardmc/world/block/BlockEntity.kt

See this annotation in the file changed.

@codefactor-io codefactor-io / CodeFactor

src/main/kotlin/io/github/dockyardmc/world/block/BlockEntity.kt#L25

Parentheses in ((point.x and 15) shl 4 or (point.z and 15)) are unnecessary and can be replaced with: (point.x and 15) shl 4 or (point.z and 15) (detekt.UnnecessaryParentheses)