Merge pull request #8713

Fixes death reporting
This commit is contained in:
Werner
2020-04-22 01:18:53 +02:00
committed by GitHub
17 changed files with 452 additions and 453 deletions

View File

@@ -242,7 +242,7 @@
return
var/area/placeofdeath = get_area(H)
var/podname = placeofdeath ? placeofdeath.name : "Unknown area"
var/podname = placeofdeath ? "[placeofdeath]" : "Unknown area"
var/sqlname = sanitizeSQL(H.real_name)
var/sqlkey = sanitizeSQL(H.key)
@@ -275,7 +275,7 @@
return
var/area/placeofdeath = get_area(H)
var/podname = placeofdeath ? placeofdeath.name : "Unknown area"
var/podname = placeofdeath ? "[placeofdeath]" : "Unknown area"
var/sqlname = sanitizeSQL(H.real_name)
var/sqlkey = sanitizeSQL(H.key)