Skip to content

Commit

Permalink
Adds an electric welding tool to Chief Engineer toolbelts and the ERT…
Browse files Browse the repository at this point in the history
… utility belt (#3999)

<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

This PR adds an electric welding tool to chief engineering belts and ERT
utility belts.

## Why It's Good For The Game

The chief engineer's belt is currently missing a welding tool, and I
felt that it may make sense to use an electric welder here for that.

## Changelog

:cl:
add: Added electrical welding tools to the populate lists for CE belts
and ERT utility belts
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
zimon9 authored Jan 20, 2025
1 parent 44c6c39 commit a88e2f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/objects/items/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@
/obj/item/storage/belt/utility/chief/full/PopulateContents()
new /obj/item/screwdriver/power(src)
new /obj/item/crowbar/power(src)
new /obj/item/weldingtool/electric(src)
new /obj/item/multitool(src)
new /obj/item/stack/cable_coil(src,MAXCOIL,pick("red","yellow","orange"))
new /obj/item/extinguisher/mini(src)
new /obj/item/analyzer(src)
//much roomier now that we've managed to remove two tools

/obj/item/storage/belt/utility/full/PopulateContents()
new /obj/item/screwdriver(src)
Expand Down Expand Up @@ -149,6 +149,7 @@
/obj/item/storage/belt/utility/full/ert/PopulateContents()
new /obj/item/screwdriver/power(src)
new /obj/item/crowbar/power(src)
new /obj/item/weldingtool/electric(src)
new /obj/item/multitool(src)
new /obj/item/construction/rcd/combat(src)
new /obj/item/extinguisher/mini(src)
Expand Down

0 comments on commit a88e2f6

Please sign in to comment.