fix duffelbag speedup bug (#91505)

## About The Pull Request
https://github.com/tgstation/tgstation/pull/91415 changed how
zip_slowdown is incremented and decremented, but did not test their
changes or consider that set_zipper runs on init to zip it, reducing
slowdown, thus reducing slowdown to negative numbers.

## Why It's Good For The Game
speedy duffels bad

## Changelog

🆑
fix: fix duffels making you fast as fuck
/🆑
This commit is contained in:
Arturlang
2025-06-10 23:58:36 -04:00
committed by Roxy
parent 0872c42127
commit 8e90fdd516
@@ -22,6 +22,7 @@
/obj/item/storage/backpack/duffelbag/Initialize(mapload)
. = ..()
slowdown += zip_slowdown
set_zipper(TRUE)
RegisterSignal(src, COMSIG_SPEED_POTION_APPLIED, PROC_REF(on_speed_potioned))