From 65441316e789a64980fca7dcc869c95c4f3adeb3 Mon Sep 17 00:00:00 2001 From: Vengie0 Date: Sat, 27 Dec 2025 09:21:32 +1100 Subject: [PATCH] Turns off quick gather for duffel bag's and add's a duffel bag zip/unzip notice in chat. (#31281) * Rebinds the duffelbag keybind to Alt+Click to prevent conflicting keybinds related to it. * rebinds the unzip/zip hotkey back to what it was before and just removes the pickup_all_on_tile message at the bottom right for duffelbag's. * Rearranges visible_message and replaces SPAN_WARNING to SPAM_NOTICE. * Update code/game/objects/items/weapons/storage/backpack.dm Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: Vengie0 * Update code/game/objects/items/weapons/storage/backpack.dm Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: Vengie0 --------- Signed-off-by: Vengie0 Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> --- code/game/objects/items/weapons/storage/backpack.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 033a982054d..8c2efdbe5a5 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -374,12 +374,15 @@ . += SPAN_NOTICE("It is currently [zipped ? "zipped" : "unzipped"]. Alt+Shift+Click to [zipped ? "un-" : ""]zip it!") /obj/item/storage/backpack/duffel/AltShiftClick(mob/user) - . = ..() handle_zipping(user) /obj/item/storage/backpack/duffel/proc/handle_zipping(mob/user) if(!Adjacent(user)) return + visible_message( + SPAN_NOTICE("[user] tries to [zipped ? "un-" : ""]zip [src]."), + SPAN_NOTICE("You start to [zipped ? "un-" : ""]zip [src].") + ) if(!zip_time || do_after(user, zip_time, target = src)) playsound(src, 'sound/items/zip.ogg', 75, TRUE)