Fixes Sterilizine not applying its surgical speed modifier (#93563)

## About The Pull Request

Sterilizine is supposed to provide a 20% surgery speed bonus in
surgeries, but that part of the reagent's effects don't work due to it
using max( instead of min( like the other surgery modifying reagents.
This PR fixes that so Sterilizine can once again make surgeries faster.

## Why It's Good For The Game

Bugfix, the reagent has made surgeries faster before and should still do
it now.

## Changelog
🆑
fix: Sterilizine will now correctly apply its 20% surgery speed bonus.
/🆑
This commit is contained in:
MGOOOOOO
2025-10-24 00:00:14 -04:00
committed by GitHub
parent 900403da2d
commit 0374acfbc6
@@ -1101,7 +1101,7 @@
return
for(var/datum/surgery/surgery as anything in exposed_carbon.surgeries)
surgery.speed_modifier = max(0.2, surgery.speed_modifier)
surgery.speed_modifier = min(0.8, surgery.speed_modifier)
/datum/reagent/space_cleaner/sterilizine/on_burn_wound_processing(datum/wound/burn/flesh/burn_wound)
burn_wound.sanitization += 0.9