From 5383cf10fcee4b721a2870d2efea43cb2e1ba926 Mon Sep 17 00:00:00 2001 From: ostrkrs Date: Wed, 7 May 2025 15:11:57 +0500 Subject: [PATCH] Update bags.dm --- code/game/objects/items/weapons/storage/bags.dm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 59bdead8af4e2..cf7b581fbc64c 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -275,7 +275,7 @@ /obj/item/storage/bag/plants/portaseeder/examine(mob/user) . = ..() if(Adjacent(user)) - . += "You can Alt-Shift-Click to convert the plants inside to seeds." + . += "You can Ctrl-Shift-Click to convert the plants inside to seeds." /obj/item/storage/bag/plants/portaseeder/proc/process_plants(mob/user) if(!length(contents)) @@ -291,7 +291,7 @@ to_chat(user, "[src] whirrs a bit but stops. Doesn't seem like it could convert anything inside.") playsound(user, "sound/machines/ding.ogg", 25) -/obj/item/storage/bag/plants/portaseeder/AltShiftClick(mob/user) +/obj/item/storage/bag/plants/portaseeder/CtrlShiftClick(mob/user) if(Adjacent(user) && ishuman(user) && !user.incapacitated(FALSE, TRUE)) process_plants(user) @@ -304,7 +304,7 @@ /obj/item/seeds, /obj/item/unsorted_seeds) -/obj/item/storage/bag/plants/seed_sorting_tray/attack_self__legacy__attackchain(mob/user) +/obj/item/storage/bag/plants/seed_sorting_tray/CtrlShiftClick(mob/user) var/depth = 0 for(var/obj/item/unsorted_seeds/unsorted in src) if(!do_after(user, 1 SECONDS, TRUE, src, must_be_held = TRUE)) @@ -312,6 +312,11 @@ depth = min(8, depth + 1) unsorted.sort(depth) +/obj/item/storage/bag/plants/seed_sorting_tray/examine(mob/user) + . = ..() + if(Adjacent(user)) + . += "You can Ctrl-Shift-Click to sort seeds inside." + //////////////////////////////////////// // MARK: Cash bag ////////////////////////////////////////