Skip to content

Commit

Permalink
Fix acid harness not having item restriction. (#4094)
Browse files Browse the repository at this point in the history
# About the pull request
fixes: #3744
<!-- 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.
-->

# Explain why it's good for the game
# 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:
fix: forbidden all the items beside battery and beakers to avoid
weirdness and bug.
/:cl:

---------

Co-authored-by: Julien <[email protected]>
  • Loading branch information
Huffie56 and Julien authored Aug 3, 2023
1 parent e245b17 commit 5772b40
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/modules/reagents/chemistry_machinery/acid_harness.dm
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@

/obj/item/storage/internal/accessory/black_vest/acid_harness
storage_slots = 2
can_hold = list(
/obj/item/reagent_container/glass/beaker,
/obj/item/cell,
)

/obj/item/clothing/accessory/storage/black_vest/acid_harness
name = "A.C.I.D. Harness"
Expand Down

0 comments on commit 5772b40

Please sign in to comment.