mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 08:29:57 +01:00
Fix simple statistics (#3381)
Fixes simple statistics not being written to the feedback database.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/datum/statistic
|
||||
var/name
|
||||
var/key
|
||||
var/write_to_database = FALSE
|
||||
var/write_to_db = FALSE
|
||||
var/broadcast_at_roundend = TRUE
|
||||
|
||||
/datum/statistic/proc/set_value()
|
||||
@@ -58,20 +58,22 @@
|
||||
/datum/statistic/numeric/openturf_falls
|
||||
name = "Human Open Space Falls"
|
||||
key = "openturf_human_falls"
|
||||
write_to_database = TRUE
|
||||
write_to_db = TRUE
|
||||
|
||||
/datum/statistic/numeric/openturf_deaths
|
||||
name = "Human Open Space Fatalities"
|
||||
key = "openturf_human_deaths"
|
||||
write_to_database = TRUE
|
||||
write_to_db = TRUE
|
||||
|
||||
/datum/statistic/numeric/gibbings
|
||||
name = "Gibbings"
|
||||
key = "gibs"
|
||||
write_to_db = TRUE
|
||||
|
||||
/datum/statistic/numeric/clonings
|
||||
name = "Clones Produced"
|
||||
key = "clones"
|
||||
write_to_db = TRUE
|
||||
|
||||
/datum/statistic/grouped/most_deaths
|
||||
name = "Most Overall Deaths (by ckey)"
|
||||
|
||||
Reference in New Issue
Block a user