Here is the situation: I want to add a prefix to a save table. It doesn’t seem to be working the way I thought it would.
local prefix=“new”
saveTable(tileList, prefix…“map.json”)
so it should come out newmap.json.
What am I missing?
Thanks!
Here is the situation: I want to add a prefix to a save table. It doesn’t seem to be working the way I thought it would.
local prefix=“new”
saveTable(tileList, prefix…“map.json”)
so it should come out newmap.json.
What am I missing?
Thanks!
Answered my own question. Have to concatinate the string first then make that the filename.
'DOH!
Answered my own question. Have to concatinate the string first then make that the filename.
'DOH!