diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm
index 255615edf1a..bbc3026ade5 100644
--- a/code/game/objects/items/weapons/storage/boxes.dm
+++ b/code/game/objects/items/weapons/storage/boxes.dm
@@ -416,10 +416,11 @@
starts_with = list(/obj/item/reagent_containers/food/snacks/donkpocket = 6)
/obj/item/storage/box/sinpockets
- name = "box of sin-pockets"
- desc = "Instructions: Crush bottom of package to initiate chemical heating. Wait for 20 seconds before consumption. Product will cool if not eaten within seven minutes."
+ name = "box of donk-pockets"
+ desc = "Instructions: Heat in microwave. Product will cool if not eaten within seven minutes."
icon_state = "donk_kit"
starts_with = list(/obj/item/reagent_containers/food/snacks/donkpocket/sinpocket = 6)
+ desc_antag = "Crush bottom of package to initiate chemical heating. Wait for 20 seconds before consumption. Product will cool if not eaten within seven minutes."
/obj/item/storage/box/monkeycubes
name = "monkey cube box"
diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm
index 53b04107e45..ad7caf32b3b 100644
--- a/code/game/objects/items/weapons/storage/uplink_kits.dm
+++ b/code/game/objects/items/weapons/storage/uplink_kits.dm
@@ -218,8 +218,6 @@
starts_with = list(/obj/item/clothing/suit/storage/vest/merc = 1, /obj/item/clothing/head/helmet/merc = 1, /obj/item/clothing/gloves/arm_guard/mercs = 1, /obj/item/clothing/shoes/leg_guard/merc = 1)
/obj/item/storage/secure/briefcase/money
- name = "suspicious briefcase"
- desc = "An ominous briefcase that has the unmistakeable smell of old, stale, cigarette smoke, and gives those who look at it a bad feeling."
starts_with = list(/obj/item/spacecash/c1000 = 10)
/obj/item/storage/box/syndie_kit/stimulants
diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm
index f1c2ab6d008..c8501ea0c77 100644
--- a/code/modules/reagents/reagent_containers/food/snacks.dm
+++ b/code/modules/reagents/reagent_containers/food/snacks.dm
@@ -950,10 +950,9 @@
reagent_data = list(/datum/reagent/nutriment = list("warm heartiness" = 1, "dough" = 2))
/obj/item/reagent_containers/food/snacks/donkpocket/sinpocket
- name = "\improper Sin-pocket"
- desc = "The food of choice for the veteran. Do NOT overconsume. Use it in hand to heat and release chemicals."
reagent_data = list(/datum/reagent/nutriment = list("delicious cruelty" = 1, "dough" = 2))
filling_color = "#6D6D00"
+ desc_antag = "Use it in hand to heat and release chemicals."
var/has_been_heated = FALSE
reagents_to_add = list(/datum/reagent/nutriment/protein = 1, /datum/reagent/nutriment = 3)
@@ -964,8 +963,8 @@
return
has_been_heated = TRUE
user.visible_message(SPAN_NOTICE("[user] crushes \the [src] package."), "You crush \the [src] package and feel it rapidly heat up.")
- name = "cooked Sin-pocket"
- desc = "The food of choice for the veteran. Do NOT overconsume."
+ name = "cooked Donk-pocket"
+ desc = "The cooked, reheatable food of choice for the seasoned spaceman."
reagents.add_reagent(/datum/reagent/drink/doctorsdelight, 5)
reagents.add_reagent(/datum/reagent/hyperzine, 1.5)
reagents.add_reagent(/datum/reagent/synaptizine, 1.25)
diff --git a/html/changelogs/alberyk-itemsdesc.yml b/html/changelogs/alberyk-itemsdesc.yml
new file mode 100644
index 00000000000..1d77db6c1ce
--- /dev/null
+++ b/html/changelogs/alberyk-itemsdesc.yml
@@ -0,0 +1,7 @@
+author: Alberyk
+
+delete-after: True
+
+changes:
+ - tweak: "Changed the sin-pocket box and item description to be the same as the regular donk pockets."
+ - tweak: "Changed the money briefcase name and description to the same as the regular briefcase."