Files
Bubberstation/code/game/objects/items/implants
Gboster-0 8e0fb6ae66 misc explosive implant readability improvements (#94598)
## About The Pull Request

- Changes a `while()` loop for a `for(var/i in 1 to x)`
- Changes `round()` for `floor()`

## Why It's Good For The Game

>Changes a `while()` loop for a `for(var/i in 1 to x)`
- Easier to look at when looking at the code

>Changes `round()` for `floor()`
- `round()` with 1 var is deprecated, better to do this sooner than
later

## Changelog

🆑
code: explosive implant code was made a tiny bit easier to read
/🆑
2025-12-25 20:41:13 +01:00
..