## About The Pull Request
TG changed the behavior of the plumbing machinery to not allow it
anymore, much to the chagrin of chem players.
## Why It's Good For The Game
Lets chem players use the setups they have been using, nice and compact.
I have been requested by Several Chem Players to restore it to the old
behavior.
## Proof Of Testing
<img width="216" height="224" alt="afbeelding"
src="https://github.com/user-attachments/assets/6abc548a-a84e-444b-8742-9222afa18161"
/>
<img width="344" height="76" alt="afbeelding"
src="https://github.com/user-attachments/assets/35875eb2-ab37-4a7a-8161-0246146d65cb"
/>
<details>
<summary>Screenshots/Videos</summary>
</details>
## Changelog
🆑
balance: You can once more place chemistry machines on
ducts/manifolds/etc
/🆑
Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward its arguments with a SendSignal() call. Now every component that want's to can also know about this happening.