diff --git a/game/modules/tome/ai/sandworm_tunneler.lua b/game/modules/tome/ai/sandworm_tunneler.lua
index 0ad8189119c6a66f95aaef79f7ceaf2078f423d6..5bf080afa69375e763070d8dbcc2659ea42b46fa 100644
--- a/game/modules/tome/ai/sandworm_tunneler.lua
+++ b/game/modules/tome/ai/sandworm_tunneler.lua
@@ -25,9 +25,19 @@ local DamageType = require "engine.DamageType"
 newAI("sandworm_tunneler", function(self)
 	-- Get a spot
 	if not self.ai_state.spot_x then
-		local s = rng.table(game.level.spots)
-		self.ai_state.spot_x = s.x
-		self.ai_state.spot_y = s.y
+		if game.level.default_up and rng.chance(#game.level.spots + 2) then
+			-- Go for the stairs
+			self.ai_state.spot_x = game.level.default_up.x
+			self.ai_state.spot_y = game.level.default_up.y
+		elseif game.level.default_down and rng.chance(#game.level.spots + 2) then
+			-- Go for the stairs
+			self.ai_state.spot_x = game.level.default_down.x
+			self.ai_state.spot_y = game.level.default_down.y
+		else
+			local s = rng.table(game.level.spots)
+			self.ai_state.spot_x = s.x
+			self.ai_state.spot_y = s.y
+		end
 	end
 
 	-- Move toward it, digging your way to it
diff --git a/game/modules/tome/data/talents/techniques/magical-combat.lua b/game/modules/tome/data/talents/techniques/magical-combat.lua
index 75031d9f6b4668e9affc2b753cb07f5870967f80..f41ab66be2694a854f2dd7aa8f9220713cb3228b 100644
--- a/game/modules/tome/data/talents/techniques/magical-combat.lua
+++ b/game/modules/tome/data/talents/techniques/magical-combat.lua
@@ -24,6 +24,7 @@ newTalent{
 	points = 5,
 	require = techs_req1,
 	sustain_stamina = 20,
+	no_energy = true,
 	cooldown = 5,
 	activate = function(self, t)
 		return {}