diff --git a/game/modules/tome/data/timed_effects/mental.lua b/game/modules/tome/data/timed_effects/mental.lua
index c4643d5411dfc19efa5ff036c1096a8f0dae9420..68944e9fa3f839b83b1cb2738905b17db98a9f33 100644
--- a/game/modules/tome/data/timed_effects/mental.lua
+++ b/game/modules/tome/data/timed_effects/mental.lua
@@ -3064,7 +3064,7 @@ newEffect{
 	long_desc = function(self, eff) return ("The target is doomed to die a bloody death.  Each time it uses an ability it takes %0.2f physical damage, and incoming bleeds are strengthened by %d%%."):
 		tformat(eff.dam, eff.power*100)
 	end,
-	charges = function(self, eff) return (tostring(math.floor((eff.power-1)*100)).."%") end,
+	charges = function(self, eff) return (tostring(math.floor((eff.power)*100)).."%") end,
 	type = "mental",
 	subtype = { psionic=true },
 	status = "detrimental",