diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for Calamity
 
+## 0.1.19.2
+
+* Fix broken `Float` parsing.
+
 ## 0.1.19.1
 
 * Fixed another missing activity type
diff --git a/calamity.cabal b/calamity.cabal
--- a/calamity.cabal
+++ b/calamity.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 3e1856812f1894e8627674660a1357adcdc7189d2964b0ed7f9b55c7087a4c68
+-- hash: 16ef7c5601edfc65ae3b7b277d4c413b36765b77311b207855e4975c892dd8cb
 
 name:           calamity
-version:        0.1.19.1
+version:        0.1.19.2
 synopsis:       A library for writing discord bots in haskell
 description:    Please see the README on GitHub at <https://github.com/nitros12/calamity#readme>
 category:       Network, Web
diff --git a/src/Calamity/Commands/Parser.hs b/src/Calamity/Commands/Parser.hs
--- a/src/Calamity/Commands/Parser.hs
+++ b/src/Calamity/Commands/Parser.hs
@@ -113,7 +113,7 @@
   parse = parseMP (parserName @Word) decimal
 
 instance Parser Float r where
-  parse = parseMP (parserName @Float) (signed mempty float)
+  parse = parseMP (parserName @Float) (signed mempty (try float <|> decimal))
 
 instance Parser a r => Parser (Maybe a) r where
   type ParserResult (Maybe a) = Maybe (ParserResult a)
