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) 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