mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-25 00:22:39 +00:00
## About The Pull Request Yesterday I was observing a few rounds and skimmed through the list for any easy runtime fixes. Here was one I found. In the `make_cig_smoke()` by cigarettes, if particles weren't setup by the time it got to the next line, it would cause this runtime. This adds a ?. (called an elvis operator, fun fact) so that if `cig_smoke.particles` isn't there, it won't runtime. ## Why It's Good For The Game Less runtimes, cleaner code results on live. ## Changelog No player facing changes.