View Single Post
10-22-19, 01:47 PM   #5
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
Follow up, to make things a bit more clear. The two following sets of lines are functionally identical but are not exactly identical.
Code:
if something then
if something == "cat" then
if something == 5 then
Code:
if not something then
if something == false then
if something == nil then
  Reply With Quote