mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
## About The Pull Request The define for barber, lizard gas and a few others was typed as a number, rather than a string. This was causing list index out of bound runtimes in certain places, like interacting with the ore silo (for example, printing circuit boards). This PR fixes it by making the defines strings, rather than numbers ## Why It's Good For The Game Fixes runtimes. Also moves stuff from skyrat to bubbers files. ## Proof Of Testing I used the circuit imprinter on runtime station with the jannie debug ID and it stopped runtiming. The accesses I've changed are listed properly now. <details> <summary>Screenshots</summary> <img width="293" height="320" alt="image" src="https://github.com/user-attachments/assets/0ca862ec-f260-4d0a-b27a-c385fc0e0ca7" /> Before, the lizard gas manager ID had its access set as NONE because they were numbers. <img width="285" height="319" alt="image" src="https://github.com/user-attachments/assets/335548ce-9dac-4ac6-872b-3642e1ab7380" /> The gas lizard manager ID has access listed properly now. </details> ## Changelog 🆑 Swan fix: fixes runtimes related to lizard gas station and barber access. /🆑
Networks: Subsystems that are conceptually networked IN-GAME
Specifically, these subsystems are for in-game mechanics that are intended to rely on a digital/radio/physical network, such as telecomms servers or the powernet
The intent of this folder categorization is to be able to quickly reference what are intended to be in-game networks, vs what is logically networked inside the code.
Knowing what is meant to be conceptually working off of an in-game network serves as guidance for adding or modifying features or fixing oversights and/or bugs.
For instance, the radio jammer only affecting headsets and suit sensors could benefit from a shorthand awareness of other systems that are represented as a network, such as research. Using the radio jammer near a server or fabricator could cause it to sever its link to the supply silo or the research web. This example is presented only as such, and not a recommendation on any new features or balance changes.