diff --git a/game/modules/tome/class/interface/Combat.lua b/game/modules/tome/class/interface/Combat.lua
index c78b76985fc5958370fe2634ef76feaf30fc6781..bddeed9cde9dd193757cb7174437676222dc2ede 100644
--- a/game/modules/tome/class/interface/Combat.lua
+++ b/game/modules/tome/class/interface/Combat.lua
@@ -1619,7 +1619,7 @@ function _M:combatMindpower(mod, add)
 	add = add or 0
 
 	if self:knowTalent(self.T_SUPERPOWER) then
-		add = add + 25 * self:getStr() / 100
+		add = add + 50 * self:getStr() / 100
 	end
 
 	if self:knowTalent(self.T_GESTURE_OF_POWER) then
diff --git a/game/modules/tome/data/talents/uber/str.lua b/game/modules/tome/data/talents/uber/str.lua
index cc0cfd0de19a440c15153800d20700b92a188582..4489eddf35997c19a3483744775611f6d9d95d19 100644
--- a/game/modules/tome/data/talents/uber/str.lua
+++ b/game/modules/tome/data/talents/uber/str.lua
@@ -185,12 +185,13 @@ uberTalent{
 	end,
 }
 
+uberTalent{
 uberTalent{
 	name = "Superpower",
 	mode = "passive",
 	info = function(self, t)
 		return ([[A strong body is key to a strong mind. And a strong mind is powerful enough to make a strong body.
-		Grants a Mindpower bonus equal to 25%% of your Strength.
+		Grants a Mindpower bonus equal to 50%% of your Strength.
 		Additionally, you treat all weapons as having an additional 30%% Willpower modifier.]])
 		:format()
 	end,