Dekkonot/bitbuffer

dumpBase64 using incorrect table.create amount

EpixScripts opened this issue · 1 comments

In dumpBase64 for the roblox version, to create the table of output bytes the script will do table.create(math.ceil(byteCount * 0.333)). This is incorrect, as Base64 does not make the file size 1/3. it should be * 1.333.

Should be fixed in commit 4558498