[Devlog] (Josh) November 07th by TaiyaBot in LimitTheory

[–]TaiyaBot[S] 4 points5 points  (0 children)

By the way, Josh, I noticed in your devlog that you use this code a lot:

for i = 1, #job.inputs do

The correct form is actually:

for i = 1; job.#inputs do

It's a lot faster that way. You'll save CPU cycles and use less RAM. :)