diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 6cba45ebba109b6594abb6fc120c2d17f8346bb7..842f28aadc3348dfdf8e6ecdd7924d265d46b0a8 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -529,7 +529,7 @@ function _M:setupCommands()
 	self.key:addCommands{
 		[{"_d","ctrl"}] = function()
 			if config.settings.tome.cheat then
-				self:changeLevel(1, "infinite-dungeon")
+				self:changeLevel(1, "wilderness-arda-fareast")
 			end
 		end,
 	}
@@ -796,11 +796,11 @@ function _M:setupMouse()
 		end
 
 		-- Move
-		if button == "left" and not xrel and not yrel and not moving_around then
+		if button == "left" and not core.key.modState("shift") and not moving_around then
 			if self.key == self.normal_key then self.player:mouseMove(tmx, tmy) end
 
 		-- Move map around
-		elseif button == "left" and xrel and yrel then
+		elseif button == "left" and xrel and yrel and core.key.modState("shift") then
 			derivx = derivx + xrel
 			derivy = derivy + yrel
 			game.level.map.changed = true
diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua
index 7e5a704180df45e74d0710de81e5d009f66d4962..74ecd01fe7c43296814a93e1fd81d086449baf19 100644
--- a/game/modules/tome/class/Player.lua
+++ b/game/modules/tome/class/Player.lua
@@ -504,7 +504,7 @@ end
 -- if no monsters in sight it will try to make an A* path, if it fails it will do a direct path
 -- if there are monsters in sight it will move one stop in the direct path direction
 function _M:mouseMove(tmx, tmy)
-	if config.settings.tome.cheat and game.key.status[game.key._LSHIFT] and game.key.status[game.key._LCTRL] then
+	if config.settings.tome.cheat and core.key.modState("ctrl") then
 		game.log("[CHEAT] teleport to %dx%d", tmx, tmy)
 		self:move(tmx, tmy, true)
 	else
diff --git a/game/modules/tome/data/talents/divine/twilight.lua b/game/modules/tome/data/talents/divine/twilight.lua
index ceda62ca0e7af9a7ac149e4c83616ac70635853d..c074b0d0210065f8c68d60005b4e0f02a02e879d 100644
--- a/game/modules/tome/data/talents/divine/twilight.lua
+++ b/game/modules/tome/data/talents/divine/twilight.lua
@@ -161,6 +161,17 @@ newTalent{
 			return
 		end
 
+		if target.rank >= 4 or -- No boss
+			target.on_die or -- No special die handler
+			target.on_acquire_target or -- No special vision handled
+			target.seen_by or -- No special vision handled
+			target.can_talk or -- No talking things
+			target:reactionToward(self) >= 0 -- No friends
+			then
+			game.logPlayer(self, "%s resists!", target.name:capitalize())
+			return true
+		end
+
 		local m = target:clone{
 			no_drops = true,
 			faction = self.faction,