Skip to content

Commit

Permalink
desc
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Sep 5, 2023
1 parent 28b4552 commit 6bfc8c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/cm_marines/smartgun_mount.dm
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@
// The actual Machinegun itself, going to borrow some stuff from current sentry code to make sure it functions. Also because they're similiar.
/obj/structure/machinery/m56d_hmg
name = "\improper M56D heavy machine gun"
desc = "A deployable, heavy machine gun. While it is capable of taking the same rounds as the M56, it fires specialized tungsten rounds for increased armor penetration.<br>Drag its sprite onto yourself to man it. Ctrl-click it to toggle burst fire."
desc = "A deployable, heavy machine gun. While it is capable of taking the same rounds as the M56, it fires specialized tungsten rounds for increased armor penetration.<br>Drag its sprite onto yourself to man it. Ctrl-click it to cycle through firemodes."
icon = 'icons/turf/whiskeyoutpost.dmi'
icon_state = "M56D"
anchored = TRUE
Expand Down Expand Up @@ -485,6 +485,10 @@
/// How many degrees in each direction the gun should be able to fire
var/shoot_degree = 90

/obj/structure/machinery/m56d_hmg/get_examine_text(mob/user)
. = ..()
. += "It is currently set to <b>[gun_firemode]</b>."

/obj/structure/machinery/m56d_hmg/initialize_pass_flags(datum/pass_flags_container/PF)
..()
if (PF)
Expand Down

0 comments on commit 6bfc8c8

Please sign in to comment.