From f0c1388eae8c8b2a397d7d7c186b95c1ea52de9f Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Mon, 15 Sep 2025 08:00:22 -0400 Subject: [PATCH] Mech Riot SMG Burstfire Fix (#21356) image This PR fixes an issue where the mech "Riot SMG" could not be toggled into burst fire mode. --- code/modules/heavy_vehicle/equipment/combat.dm | 2 +- .../designs/mechfab/mechs/designs_exosuit_equipment.dm | 2 +- html/changelogs/hellfirejag-riotmech-burst-fix.yml | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/hellfirejag-riotmech-burst-fix.yml diff --git a/code/modules/heavy_vehicle/equipment/combat.dm b/code/modules/heavy_vehicle/equipment/combat.dm index 91aa82b1638..618d600621b 100644 --- a/code/modules/heavy_vehicle/equipment/combat.dm +++ b/code/modules/heavy_vehicle/equipment/combat.dm @@ -45,7 +45,7 @@ icon_state = "mecha_ballistic" holding_type = /obj/item/gun/energy/mountedsmg/mech -/obj/item/mecha_equipment/mounted_system/combat/smg_ltl +/obj/item/mecha_equipment/mounted_system/combat/smg/ltl name = "mounted riot submachinegun" desc = "An exosuit-mounted automatic weapon that has been modified to fire rubber ammunition for riot control. Handle with care." icon_state = "mecha_ballistic_ltl" diff --git a/code/modules/research/designs/mechfab/mechs/designs_exosuit_equipment.dm b/code/modules/research/designs/mechfab/mechs/designs_exosuit_equipment.dm index 8c55d31be25..97b3ba29f1f 100644 --- a/code/modules/research/designs/mechfab/mechs/designs_exosuit_equipment.dm +++ b/code/modules/research/designs/mechfab/mechs/designs_exosuit_equipment.dm @@ -28,7 +28,7 @@ /datum/design/item/mechfab/exosuit_equipment/uac_ltl name = "Mounted Riot Submachine Gun" req_tech = list(TECH_COMBAT = 2) - build_path = /obj/item/mecha_equipment/mounted_system/combat/smg_ltl + build_path = /obj/item/mecha_equipment/mounted_system/combat/smg/ltl /datum/design/item/mechfab/exosuit_equipment/plasma name = "Mounted Plasma Cutter" diff --git a/html/changelogs/hellfirejag-riotmech-burst-fix.yml b/html/changelogs/hellfirejag-riotmech-burst-fix.yml new file mode 100644 index 00000000000..ef5dd7f14e3 --- /dev/null +++ b/html/changelogs/hellfirejag-riotmech-burst-fix.yml @@ -0,0 +1,4 @@ +author: Hellfirejag +delete-after: True +changes: + - bugfix: "Fixed the mech-mounted riot smg not being able to change into burst fire."