Skip to content

Commit

Permalink
Reorders the Essential SG Kit (#6899)
Browse files Browse the repository at this point in the history
# About the pull request

<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->
Reorders the Essential SG Kit
OLD: Goggles, Gun, Battery, Armor, 3 Ammo
NEW: Armor, Gun, Goggles, Battery, 3 Ammo

# Explain why it's good for the game
Goggles require the gun, gun requires the armor. By placing them in this
order, it becomes easier for new players to learn this requirement and
equip the kit.

# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
qol: Reorders the Essential SG Kit in order of Armor, Smartgun, Goggles
/:cl:
  • Loading branch information
Contrabang committed Aug 9, 2024
1 parent 3d18870 commit 9ef9edf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/cm_marines/equipment/weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

/obj/item/storage/box/m56_system/Initialize()
. = ..()
new /obj/item/clothing/glasses/night/m56_goggles(src)
new /obj/item/clothing/suit/storage/marine/smartgunner(src)
new /obj/item/weapon/gun/smartgun(src)
new /obj/item/clothing/glasses/night/m56_goggles(src)
new /obj/item/smartgun_battery(src)
new /obj/item/clothing/suit/storage/marine/smartgunner(src)
for(var/i in 1 to 3)
new /obj/item/ammo_magazine/smartgun(src)
update_icon()
Expand Down

0 comments on commit 9ef9edf

Please sign in to comment.