diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 7b4fa6102c409228dbed32d7005aa14a7a55ea7d..5fc978f81ba698fd4f01d5f7189ab2b2c63b77c6 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -1296,7 +1296,7 @@ function _M:setupCommands()
 			print("===============")
 		end end,
 		[{"_g","ctrl"}] = function() if config.settings.cheat then
-			game:changeLevel(game.level.level+1)
+			game.player:takeHit(100, game.player)
 do return end
 			game:changeLevel(1, "stellar-system-shandral")
 do return end
diff --git a/game/modules/tome/data/talents/techniques/grappling.lua b/game/modules/tome/data/talents/techniques/grappling.lua
index 967a0d8756be44c78083a38e5dfa5b2ff4fa92b7..242a9d12ad86fe71a817b0c63a6cbde22e3efcc8 100644
--- a/game/modules/tome/data/talents/techniques/grappling.lua
+++ b/game/modules/tome/data/talents/techniques/grappling.lua
@@ -110,7 +110,7 @@ newTalent{
 		-- do crushing hold or strangle if we're already grappling the target
 		if hit and self:knowTalent(self.T_CRUSHING_HOLD) then
 			local t = self:getTalentFromId(self.T_CRUSHING_HOLD)
-			if grappled and not target.no_breath and not target:attr("undead") and target:canBe("silence") then
+			if grappled and not target:attr("no_breath") and not target:attr("undead") and target:canBe("silence") then
 				target:setEffect(target.EFF_STRANGLE_HOLD, duration, {src=self, power=t.getDamage(self, t) * 1.5})
 			else
 				target:setEffect(target.EFF_CRUSHING_HOLD, duration, {src=self, power=t.getDamage(self, t)})