Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Nov 27, 2023
1 parent 77dcac1 commit 06ddacd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sizebot/lib/quake.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def mag_to_name(mag: float) -> str:
return "great"
elif mag < 10: # 9 - 10
return "extreme"
elif mag < 13: # 10 - 13
elif mag < 13: # 10 - 13 [at this point I'm making s*** up]
return "unprecedented"
elif mag < 21: # 13 - 21
elif mag < 21: # 13 - 21 [I did do research tho, I didn't just pull this out of my butt]
return "apocalyptic"
elif mag < 22: # 21 - 23
return "earth-cracking"
Expand Down

0 comments on commit 06ddacd

Please sign in to comment.