Brings back clean toolbox force (#91641)

## About The Pull Request

Returns clean toolbox back to their original force upgrade of 1TC = 1
damage, rather than .5 - which was added because progtots had access to
'infinite' TC.

## Why It's Good For The Game

Progression traitor is dead

## Changelog

🆑
balance: Assistant-only clean toolbox now does 1 damage per TC again.
/🆑
This commit is contained in:
John Willard
2025-06-19 00:10:05 -04:00
committed by GitHub
parent f3e3122184
commit bd1fce1c23
@@ -48,7 +48,7 @@
/obj/item/storage/toolbox/mechanical/old/clean/proc/calc_damage()
var/power = 0
for (var/obj/item/stack/telecrystal/stored_crystals in get_all_contents())
power += (stored_crystals.amount / 2)
power += stored_crystals.amount
force = initial(force) + power
throwforce = initial(throwforce) + power