diff --git a/game/engines/default/engine/Game.lua b/game/engines/default/engine/Game.lua
index be28a450add2c6a2b2ae36420fb38a9f2410d0dc..13b27922a7934cb783e375a7aa9ca4f145f0ddf8 100644
--- a/game/engines/default/engine/Game.lua
+++ b/game/engines/default/engine/Game.lua
@@ -273,12 +273,8 @@ function _M:tick()
 	-- Check out any possible errors
 	local errs = core.game.checkError()
 	if errs then
---table.set(game, "debug", "last_errs", errs)
---table.print(errs, "_le_")
 		if config.settings.cheat then for id = #self.dialogs, 1, -1 do self:unregisterDialog(self.dialogs[id]) end end
 		self:registerDialog(require("engine.dialogs.ShowErrorStack").new(errs))
---errs = core.game.checkError()
---table.print(errs, "_mle_")
 	end
 
 	local stop = {}