View Single Post
08-21-08, 09:08 PM   #7
arkayenro
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Dec 2006
Posts: 12
Originally Posted by kerrang View Post
mytable = {}

SHOULD clear EVERYTHING in the existing table should it not?
clear the table? no. youre assigning a new empty table to that variable and throwing the old one onto the lua garbage heap, it still exists in memory but it shouldnt be allocated to your variable any more.

how it's getting reassigned to your variable is weird, but its got to be in your code somewhere.

are you using any savedvaraible libraries? like acedb or similar? or is this from no library code?
  Reply With Quote