View Single Post
Old 02-08-2020, 02:17 PM   #432
X-Raym
Human being with feelings
 
X-Raym's Avatar
 
Join Date: Apr 2013
Location: France
Posts: 9,875
Default

If I understand correctly FXchunk ID is based on this line


Code:
  local Start, Stop = string.find(StateChunk, OldFXStateChunk, 0, true)

followed by


Code:
  StateChunk=StateChunk:sub(1,Start-1)..FXStateChunk:match("%s-(.*)")..StateChunk:sub(Stop+1,-1)

So several takes have empty string as OldFXStateChunk, then it could fails.


Not sure if this is the issue but maybe it is.


What do you think ?
X-Raym is offline   Reply With Quote