From f7a09004bb3f10299c6afb6f9c15a75cf7713d99 Mon Sep 17 00:00:00 2001 From: LDip999 Date: Wed, 4 Mar 2026 15:39:24 +0100 Subject: [PATCH 1/2] Adds STATS_GRAVES_CONSECRATED for it was missing for some raisin --- code/__HELPERS/round_statistics.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/__HELPERS/round_statistics.dm b/code/__HELPERS/round_statistics.dm index 4ad30504333..dd2c7d524a5 100644 --- a/code/__HELPERS/round_statistics.dm +++ b/code/__HELPERS/round_statistics.dm @@ -345,6 +345,7 @@ GLOBAL_LIST_INIT(azure_round_stats, list( STATS_RURAL_TAXES_COLLECTED = 0, STATS_BANK_INTEREST_CREATED = 0, STATS_GOLD_TRANSMUTED = 0, + STATS_GRAVES_CONSECRATED = 0, //CC edit this was missing? )) GLOBAL_LIST_EMPTY(patron_follower_counts) From 149a01c37794b563187616f19406228725c76e68 Mon Sep 17 00:00:00 2001 From: LDip999 Date: Wed, 4 Mar 2026 15:51:19 +0100 Subject: [PATCH 2/2] Wounds sewn --- code/game/objects/items/rogueitems/needle.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/items/rogueitems/needle.dm b/code/game/objects/items/rogueitems/needle.dm index fa4dff911be..1af940663b0 100644 --- a/code/game/objects/items/rogueitems/needle.dm +++ b/code/game/objects/items/rogueitems/needle.dm @@ -218,8 +218,10 @@ if(target_wound.bleed_rate == 0 && !informed) if(is_simple_animal) patient.visible_message(span_smallgreen("One last drop of blood trickles from the [(target_wound?.name)] on [patient] before it closes."), span_smallgreen("The throbbing warmth coming out of [target_wound] soothes and stops. It no longer bleeds.")) + record_round_statistic(STATS_WOUNDS_SEWED) // CC Edit else patient.visible_message(span_smallgreen("One last drop of blood trickles from the [(target_wound?.name)] on [patient]'s [affecting.name] before it closes."), span_smallgreen("The throbbing warmth coming out of [target_wound] soothes and stops. It no longer bleeds.")) + record_round_statistic(STATS_WOUNDS_SEWED) // CC Edit informed = TRUE if(istype(target_wound, /datum/wound/dynamic)) var/datum/wound/dynamic/dynwound = target_wound