Starbound

Starbound

Clutter - Placeable Plants and more!
The Void 10 Jul, 2022 @ 11:20pm
frozenmistprimer and smokegen file "out of bounds"
Hey~ So I managed to create a a fix for the error that it spits about being out of bounds and unable to find the image. The error comes from the frozenmistprimer.frames and smokegen.frames files having the wrong parameters in there.

Both of the files contain the following:

{ "frameGrid" : { "size" : [32, 10], "dimensions" : [1, 1], "names" : [ [ "default" ] ] } }

But the images they both call on are only 1x1, so it can't actually find the dimensions 32,10 in the image since they don't exist.

I was able to fix this by changing the files to the following:

{ "frameGrid" : { "size" : [1, 1], "dimensions" : [1, 1], "names" : [ [ "default" ] ] } }

I have some .patch files I created for personal use which I can upload if you'd prefer to not patch it in the mod itself. But preferably you can upload this quick fix for us, apologies for any inconvenience caused by all this~ :NB_RANGER_NOTE: