Skip to content

Commit a3b2a29

Browse files
committed
fix: burrow distance formula
1 parent 6397c06 commit a3b2a29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/GriffinBurrows.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ object GriffinBurrows {
6464
val arrows = mutableMapOf<Arrow, Instant>()
6565
val guesses = mutableMapOf<BurrowGuess, Instant>()
6666
fun getDistanceFromPitch(pitch: Double) =
67-
2805 * pitch + 1375
67+
2805 * pitch - 1375
6868

6969
val grassData by lazy {
7070
this::class.java.getResource("/assets/skytils/grassdata.txt")!!.readBytes()

0 commit comments

Comments
 (0)