| [capitalize(org.name)]: | \
[(org.brute_dam > 0) ? "[org.brute_dam]" : "0"] | \
[(org.burn_dam > 0) ? "[org.burn_dam]" : "0"] |
"
- dmgreport += "\n"
+ dmgreport += ""
to_chat(user, dmgreport.Join())
diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm
index 5f89a7e4ed..310403effc 100644
--- a/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm
+++ b/modular_citadel/code/modules/reagents/chemistry/reagents/healing.dm
@@ -120,6 +120,9 @@
if(data["grown_volume"] > 135 && ((C.health + C.oxyloss)>=80))
if(M.revive())
M.emote("gasp")
+ borrowed_health *= 2
+ if(borrowed_health < 100)
+ borrowed_health = 100
log_combat(M, M, "revived", src)
else
M.adjustBruteLoss(-healing_factor)