diff --git a/game/modules/tome/data/zones/demon-plane/npcs.lua b/game/modules/tome/data/zones/demon-plane/npcs.lua
index 6b7cc92c695cab75c58d98b208bb2a1ca9f0772f..cbc98c8024070ecfa246ffc7784fc143df3d6c4d 100644
--- a/game/modules/tome/data/zones/demon-plane/npcs.lua
+++ b/game/modules/tome/data/zones/demon-plane/npcs.lua
@@ -79,8 +79,13 @@ newEntity{ define_as = "DRAEBOR",
 	resolvers.inscriptions(1, {"manasurge rune"}),
 
 	on_die = function(self, who)
-		require("engine.ui.Dialog"):simplePopup(_t"Back and there again", _t"As the annoying imp falls a portal appears under its corpse.")
+		require("engine.ui.Dialog"):simplePopup("Back and there again", "As the annoying imp falls a portal appears under its corpse.")
 		local g = game.zone:makeEntityByName(game.level, "terrain", "PORTAL_BACK")
-		game.zone:addEntity(game.level, g, "terrain", self.x, self.y)
+		local oe = game.level.map(self.x, self.y, engine.Map.TERRAIN)
+		if oe:attr("temporary") and oe.old_feat then
+			oe.old_feat = g
+		else
+			game.zone:addEntity(game.level, g, "terrain", self.x, self.y)
+		end
 	end,
 }