Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/__HELPERS/round_statistics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions code/game/objects/items/rogueitems/needle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading