Starbound

Starbound

M-13's Action Figure Dropchance Tweaks! (Version: C)
Showing 1-4 of 4 entries
Update: 30 Jul, 2024 @ 1:34pm

- Version 2.01 (small bugfix)

I did a derp and made a small typo in the ixoling "patch" which caused the mod to NOT work.
This is now fixed.

Update: 3 Feb, 2023 @ 8:30am

- Version 2.0 (Hopefully FINAL version)

First thing you all might notice is that i renamed the C Version of my mods from C(heaty) to C(elestial), this was due to feedback from glider521al, who thought the name might scare users into not using the mod.

Besides that the mod's code has been completely reworked and improved.

The bottom line is that it should be a LOT more compatible with other mods.

The details: (for those wishing to read them)

- The Mod's code has been segmented into smaller pieces and Test operations have been added to the code.
- Replace operations have been swapped out for Add operations
What this means:
1. Cutting the code into smaller segments does nothing on it's own, but together with Test operations each tiny piece is run seperately.
This means that if my mod encounters an error on a specific monster (because of changes made by another mod) it will skip that monster and continue running (instead of your game crashing)
2. Using Add operations instead of Replace operations ensures that other mods do not overwrite/replace changes made by my mod.

the ONLY exception is the Ixoling, this due to the way the Ixoling is coded, so that part of the mod still uses Replace operations

Thanks again to glider521al for the suggestions.

Update: 3 Feb, 2023 @ 6:29am

- Ignore this :P nothing to see here (yea i derped again)

Update: 31 Jan, 2023 @ 1:02pm

Version 1.0
- Initial Release