mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Manualbiome (#11216)
This commit is contained in:
@@ -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(),
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user