View Single Post
08-24-15, 01:40 AM   #8
semlar
A Pyroguard Emberseer
 
semlar's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 1,060
Originally Posted by Nimhfree View Post
As an aside, isn't the following code:
Code:
if level then
	blizSetMapByID(zone,level)
else
	blizSetMapByID(zone)
end
the same as:
Code:
blizSetMapByID(zone,level)
It's the same as SetMapByID(zone), because it doesn't take a second argument.
  Reply With Quote