diff --git a/game/engines/default/engine/HotkeysIconsDisplay.lua b/game/engines/default/engine/HotkeysIconsDisplay.lua
index 36096e8eac841ea4316d16fefcd1d5d510a08d31..251b5c710e503f0c2df45f40a5f1f5f7ca400480 100644
--- a/game/engines/default/engine/HotkeysIconsDisplay.lua
+++ b/game/engines/default/engine/HotkeysIconsDisplay.lua
@@ -40,6 +40,8 @@ function _M:init(actor, x, y, w, h, bgcolor, fontname, fontsize, icon_w, icon_h)
 	setmetatable(self.cache, {__mode="v"})
 	self.icon_w, self.icon_h = icon_w, icon_h
 	self.tiles = Tiles.new(icon_w, icon_h, fontname or "/data/font/VeraMono.ttf", fontsize or 10, true, true)
+	self.tiles.use_images = true
+	self.tiles.force_back_color = {r=0, g=0, b=0}
 
 	local fw, fh = core.display.loadImage("/data/gfx/ui/talent_frame_ok.png"):getSize()
 	self.frames = {w=math.floor(fw * icon_w / 64), h=math.floor(fh * icon_h / 64), rw=icon_w / 64, rh=icon_h / 64}
diff --git a/game/modules/tome/data/general/objects/boss-artifacts.lua b/game/modules/tome/data/general/objects/boss-artifacts.lua
index 604074f4d371fb8f43ee90452945fe117e379437..fffe21841b297d90baa8b773bcf84c90b59c2030 100644
--- a/game/modules/tome/data/general/objects/boss-artifacts.lua
+++ b/game/modules/tome/data/general/objects/boss-artifacts.lua
@@ -304,6 +304,7 @@ newEntity{ base = "BASE_HELM",
 		combat_armor = 6,
 		fatigue = 8,
 		inc_stats = { [Stats.STAT_STR] = 5, [Stats.STAT_CON] = 5, [Stats.STAT_WIL] = 4 },
+		inc_damage={ [DamageType.PHYSICAL] = 10, },
 		combat_physresist = 12,
 		combat_mentalresist = 12,
 		combat_spellresist = 12,