diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 0bca8fdaf9eebaec8e3931849d8a0c40b6597be1..a8ff9c3c0205e839f10528d843c09f187661b2bc 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -1027,7 +1027,9 @@ function _M:tooltip(x, y, seen_by)
 	ts:add(self.type:capitalize(), " / ", self.subtype:capitalize(), true)
 	ts:add("Rank: ") ts:merge(rank_color:toTString()) ts:add(rank, {"color", "WHITE"}, true)
 	ts:add({"color", 0, 255, 255}, ("Level: %d"):format(self.level), {"color", "WHITE"}, true)
-	ts:add({"color", 255, 0, 0}, ("HP: %d (%d%%)"):format(self.life, self.life * 100 / self.max_life), {"color", "WHITE"}, true)
+	if self.life < 0 then ts:add({"color", 255, 0, 0}, "HP: unknown", {"color", "WHITE"}, true)
+	else ts:add({"color", 255, 0, 0}, ("HP: %d (%d%%)"):format(self.life, self.life * 100 / self.max_life), {"color", "WHITE"}, true)
+	end
 
 	if self:attr("encased_in_ice") then
 		local eff = self:hasEffect(self.EFF_FROZEN)
diff --git a/game/modules/tome/dialogs/CharacterSheet.lua b/game/modules/tome/dialogs/CharacterSheet.lua
index d2bd3bba153dc5ca9bc43d20ee0636e68ca92a8e..f80393789b42de43a09e1740868f1f7f279ccf07 100644
--- a/game/modules/tome/dialogs/CharacterSheet.lua
+++ b/game/modules/tome/dialogs/CharacterSheet.lua
@@ -331,7 +331,9 @@ function _M:drawDialog(kind, actor_to_compare)
 		h = h + self.font_h
 
 		text = compare_fields(player, actor_to_compare, "max_life", "%d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_LIFE, s:drawColorStringBlended(self.font, ("#c00000#Life: #00ff00#%d/%s"):format(player.life, text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		if player.life < 0 then self:mouseTooltip(self.TOOLTIP_LIFE, s:drawColorStringBlended(self.font, ("#c00000#Life: #00ff00#???/%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		else self:mouseTooltip(self.TOOLTIP_LIFE, s:drawColorStringBlended(self.font, ("#c00000#Life: #00ff00#%d/%s"):format(player.life, text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		end
 
 		if player:knowTalent(player.T_STAMINA_POOL) then
 			text = compare_fields(player, actor_to_compare, "max_stamina", "%d", "%+.0f")
diff --git a/game/modules/tome/dialogs/LevelupDialog.lua b/game/modules/tome/dialogs/LevelupDialog.lua
index 3dc5b13eb397c5f9db5ecae228f7c0488a4135d0..1af7d12d75a9209f5a664b68f23ec7e06792d7ad 100644
--- a/game/modules/tome/dialogs/LevelupDialog.lua
+++ b/game/modules/tome/dialogs/LevelupDialog.lua
@@ -410,11 +410,9 @@ function _M:getStatDescription(stat_id)
 			text = text.."Accuracy: "..color..(diff * 0.35).."#LAST#\n"
 		end
 	elseif stat_id == self.actor.STAT_STR then
+		text = text.."Physical power: "..color..(diff).."#LAST#\n"
 		text = text.."Max encumberance: "..color..(diff * 1.8).."#LAST#\n"
 		text = text.."Physical save: "..color..(diff * 0.35).."#LAST#\n"
-		if not self.actor.use_psi_combat then
-			text = text.."Accuracy: "..color..(diff * 0.35).."#LAST#\n"
-		end
 	elseif stat_id == self.actor.STAT_CUN then
 		text = text.."Spell/Physical crit. chance: "..color..(diff * 0.3).."#LAST#\n"
 		text = text.."Mental save: "..color..(diff * 0.35).."#LAST#\n"
@@ -428,9 +426,7 @@ function _M:getStatDescription(stat_id)
 	elseif stat_id == self.actor.STAT_DEX then
 		text = text.."Defense: "..color..(diff * 0.35).."#LAST#\n"
 		text = text.."Ranged defense: "..color..(diff * 0.35).."#LAST#\n"
-		if not self.actor.use_psi_combat then
-			text = text.."Accuracy: "..color..(diff * 0.35).."#LAST#\n"
-		end
+		text = text.."Accuracy: "..color..(diff).."#LAST#\n"
 	end
 
 	if self.actor.player and self.desc_def and self.desc_def.getStatDesc and self.desc_def.getStatDesc(stat_id, self.actor) then