Manualbiome (#11216)

This commit is contained in:
Kashargul
2025-07-21 22:37:45 +02:00
committed by GitHub
parent afa0b4bfdb
commit f39fdae47c
280 changed files with 18208 additions and 17558 deletions

View File

@@ -126,14 +126,14 @@ SUBSYSTEM_DEF(mobs)
var/podname = placeofdeath ? placeofdeath.name : "Unknown area"
var/list/data = list(
"name" = L.real_name,
"byondkey" = L.key,
"job" = L.mind.assigned_role,
"special" = L.mind.special_role,
"name" = "[L.real_name]",
"byondkey" = "[L.key]",
"job" = "[L.mind.assigned_role]",
"special" = "[L.mind.special_role]",
"pod" = podname,
"tod" = time2text(world.realtime, "YYYY-MM-DD hh:mm:ss"),
"laname" = L.lastattacker ? L.lastattacker:real_name : null,
"lakey" = L.lastattacker ? L.lastattacker:key : null,
"laname" = L.lastattacker ? L.lastattacker:real_name : "",
"lakey" = L.lastattacker ? L.lastattacker:key : "",
"gender" = L.gender,
"bruteloss" = L.getBruteLoss(),
"fireloss" = L.getFireLoss(),

View File

@@ -148,7 +148,7 @@ SUBSYSTEM_DEF(statpanels)
var/atom/atom_icon = description_holders["icon"]
var/shown_icon = target.examine_icon
if(!shown_icon)
if(!shown_icon && atom_icon)
if(ismob(atom_icon) || length(atom_icon.overlays) > 0)
var/force_south = FALSE
if(isliving(atom_icon))