diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index eab9012129e07df7fa626e2fda121415347c2f0b..cf99068299cb013a99669bcd76fae584cc4f08d3 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -2660,7 +2660,7 @@ function _M:die(src, death_note)
 		end)
 	end
 
-	if src.fireTalentCheck then src:fireTalentCheck("callbackOnKill", self, death_note) end
+	if src and src.fireTalentCheck then src:fireTalentCheck("callbackOnKill", self, death_note) end
 
 	if src and ((src.resolveSource and src:resolveSource().player) or src.player) then
 		-- Achievements
diff --git a/game/modules/tome/data/gfx/deathbox-ui/border_hor_left.png b/game/modules/tome/data/gfx/deathbox-ui/border_hor_left.png
new file mode 100644
index 0000000000000000000000000000000000000000..4aa534b9c169d629ad09d95116f057346b2f6931
Binary files /dev/null and b/game/modules/tome/data/gfx/deathbox-ui/border_hor_left.png differ
diff --git a/game/modules/tome/data/gfx/deathbox-ui/border_hor_middle.png b/game/modules/tome/data/gfx/deathbox-ui/border_hor_middle.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc8b829c1eb56aabb4b53f06a977294ccc3a94f6
Binary files /dev/null and b/game/modules/tome/data/gfx/deathbox-ui/border_hor_middle.png differ
diff --git a/game/modules/tome/data/gfx/deathbox-ui/border_hor_right.png b/game/modules/tome/data/gfx/deathbox-ui/border_hor_right.png
new file mode 100644
index 0000000000000000000000000000000000000000..540235f0dbc029583ff7803fc9b7d81bd4c5eef4
Binary files /dev/null and b/game/modules/tome/data/gfx/deathbox-ui/border_hor_right.png differ
diff --git a/game/modules/tome/dialogs/DeathDialog.lua b/game/modules/tome/dialogs/DeathDialog.lua
index f3f4b2abd26b3a4ec8691278c23b8c7163249f41..fcc570551f3195442fa0a384fd94fb081d68ffb1 100644
--- a/game/modules/tome/dialogs/DeathDialog.lua
+++ b/game/modules/tome/dialogs/DeathDialog.lua
@@ -58,13 +58,13 @@ You can dump your character data to a file to remember her/him forever, or you c
 		self:loadUI{
 			{left=0, top=0, ui=self.c_desc},
 			{left=0, top=self.c_desc.h, ui=self.c_achv},
-			{left=5, top=self.c_desc.h+self.c_achv.h, padding_h=10, ui=Separator.new{dir="vertical", size=self.iw - 10}},
+			{left=5, top=self.c_desc.h+self.c_achv.h, padding_h=10, ui=Separator.new{ui="deathbox", dir="vertical", size=self.iw - 10}},
 			{left=0, bottom=0, ui=self.c_list},
 		}
 	else
 		self:loadUI{
 			{left=0, top=0, ui=self.c_desc},
-			{left=5, top=self.c_desc.h, padding_h=10, ui=Separator.new{dir="vertical", size=self.iw - 10}},
+			{left=5, top=self.c_desc.h, padding_h=10, ui=Separator.new{ui="deathbox", dir="vertical", size=self.iw - 10}},
 			{left=0, bottom=0, ui=self.c_list},
 		}
 	end