diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 5bc38dd5d96b147cd6771e9b4eea38f99571ddb2..6a1cfe758177cb6e824233b78449dc458c2771c5 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -3099,6 +3099,16 @@ function _M:postUseTalent(ab, ret)
 		else
 			self:useEnergy()
 		end
+
+		-- Free melee blow
+		if self:knowTalent(self.T_CORRUPTED_STRENGTH) then
+			local tgts = {}
+			for _, c in pairs(util.adjacentCoords(self.x, self.y)) do
+				local target = game.level.map(c[1], c[2], Map.ACTOR)
+				if target and self:reactionToward(target) < 0 then tgts[#tgts+1] = target end
+			end
+			if #tgts > 0 then self:attackTarget(rng.table(tgts), DamageType.BLIGHT, self:combatTalentWeaponDamage(self.T_CORRUPTED_STRENGTH, 0.5, 1.1), true) end
+		end
 	end
 
 	local trigger = false
diff --git a/game/modules/tome/data/talents/corruptions/reaving-combat.lua b/game/modules/tome/data/talents/corruptions/reaving-combat.lua
index 7d2433b17170c4f6bb70b83b91f65576da882226..ab210f5c6a564a5dc9cad31b22d26452ff466405 100644
--- a/game/modules/tome/data/talents/corruptions/reaving-combat.lua
+++ b/game/modules/tome/data/talents/corruptions/reaving-combat.lua
@@ -32,7 +32,9 @@ newTalent{
 		end
 	end,
 	info = function(self, t)
-		return ([[Allows you to dual wield any type of one handed weapons and increases the damage of the off-hand weapon to %d%%.]]):format(100 / (2 - self:getTalentLevel(t) / 9))
+		return ([[Allows you to dual wield any type of one handed weapons and increases the damage of the off-hand weapon to %d%%.
+		Also casting a spell (which uses a turn) will give a free melee attack at a random target in melee range for %d%% blight damage.]]):
+		format(100 / (2 - self:getTalentLevel(t) / 9), 100 * self:combatTalentWeaponDamage(t, 0.5, 1.1))
 	end,
 }
 
diff --git a/game/profile-thread/UserChat.lua b/game/profile-thread/UserChat.lua
index eee64d64e17d6aa4657ab1318f63fd42e6876b22..0a032d5249e8405074c5613e4b6ddf6a7a5bd43c 100644
--- a/game/profile-thread/UserChat.lua
+++ b/game/profile-thread/UserChat.lua
@@ -69,6 +69,8 @@ function _M:parted(channel)
 end
 
 function _M:reconnect()
+	if not self.client.sock then return end
+
 	-- Rejoin every channels
 	print("[ONLINE PROFILE] reconnecting to channels")
 	for chan, _ in pairs(self.cjoined) do