From f38d497d8944dfa404e26874a1a8f8536d5ef342 Mon Sep 17 00:00:00 2001 From: Kano <89972582+kano-dot@users.noreply.github.com> Date: Fri, 29 May 2026 23:38:02 +0300 Subject: [PATCH] Fixes not being able to write a friendly message on longbow shells (#22531) Fixes #22517 --- code/modules/overmap/ship_weaponry/weaponry/longbow_ammo.dm | 4 +++- .../kano-dot-i-got-a-bullet-with-your-name-on-it.yml | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/kano-dot-i-got-a-bullet-with-your-name-on-it.yml diff --git a/code/modules/overmap/ship_weaponry/weaponry/longbow_ammo.dm b/code/modules/overmap/ship_weaponry/weaponry/longbow_ammo.dm index fb56c33643f..d409e8423ee 100644 --- a/code/modules/overmap/ship_weaponry/weaponry/longbow_ammo.dm +++ b/code/modules/overmap/ship_weaponry/weaponry/longbow_ammo.dm @@ -28,7 +28,9 @@ H.drop_from_inventory(W) add_warhead(W) playsound(src, 'sound/machines/rig/rig_deploy.ogg', 40) - update_status() + update_status() + + return ..() /obj/item/ship_ammunition/longbow/can_be_loaded() if(primer && warhead) diff --git a/html/changelogs/kano-dot-i-got-a-bullet-with-your-name-on-it.yml b/html/changelogs/kano-dot-i-got-a-bullet-with-your-name-on-it.yml new file mode 100644 index 00000000000..5b2f2cb2a03 --- /dev/null +++ b/html/changelogs/kano-dot-i-got-a-bullet-with-your-name-on-it.yml @@ -0,0 +1,6 @@ +author: Kano + +delete-after: True + +changes: + - bugfix: "Fixed not being able to write messages on longbow shell ammunition."