View Single Post
07-28-17, 11:22 AM   #6
Banknorris
A Chromatic Dragonspawn
 
Banknorris's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 153
Originally Posted by Kakjens View Post
I am using a check
Lua Code:
  1. if wait == {} then
  2. updatevisibility()
  3. end
to see when all items are ready. I remember it failed sometimes but couldn't reproduce after clearing the cache.
I am pretty sure
Code:
wait=={}
is always false
just test
Lua Code:
  1. local a={}
  2. if a=={} then
  3.     print("Bank Norris is wrong")
  4. else
  5.     print("Bank Norris is correct")
  6. end
__________________
"In this world nothing can be said to be certain, except that fractional reserve banking is a Ponzi scheme and that you won't believe it." - Mandrill

Last edited by Banknorris : 07-28-17 at 11:24 AM.
  Reply With Quote