Skip to content

Commit

Permalink
fix: burrow distance formula
Browse files Browse the repository at this point in the history
  • Loading branch information
Sychic committed May 14, 2024
1 parent 6397c06 commit a3b2a29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ object GriffinBurrows {
val arrows = mutableMapOf<Arrow, Instant>()
val guesses = mutableMapOf<BurrowGuess, Instant>()
fun getDistanceFromPitch(pitch: Double) =
2805 * pitch + 1375
2805 * pitch - 1375

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

0 comments on commit a3b2a29

Please sign in to comment.