diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm
index 1c5c4824c377f..a953b9c08cc53 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
////////////////////////////////////////