more healing reagent no longer means less healing (#25785)

The first 20 units now do the normal touch reaction with the rest splashing instead of it being done only for 20 units and below
This commit is contained in:
Migratingcocofruit
2024-07-01 05:16:21 +03:00
committed by GitHub
parent 340d8a3731
commit 49599aa2f6
@@ -277,8 +277,9 @@
if(!iscarbon(M))
return ..()
if(ishuman(M) && volume >= 20 && method == REAGENT_TOUCH)
var/applied_volume = splash_human(M, volume)
if(ishuman(M) && volume > 20 && method == REAGENT_TOUCH)
heal_overall_damage(M, 20)
var/applied_volume = splash_human(M, volume - 20)
return ..(M, method, applied_volume, show_message)
if(method == REAGENT_TOUCH)