ID:149781
 
If I use this:

client.images = null

To get rid of a player's images, are the images deleted or are they still stored somewhere?
SilkWizard wrote:
If I use this:

client.images = null

To get rid of a player's images, are the images deleted or are they still stored somewhere?

I'm not sure this is handled properly, although I'd advise using =list() instead of =null for this. If it is handled correctly, then it's likely that the images will be deleted if and only if a reference to them no longer exists. If you want to be sure to delete the images (no matter who else may be seeing them), use del() on each image in the list.

Lummox JR