View Single Post
07-29-16, 07:49 PM   #5
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,241
Also, you do not need to use select if the first return is all that interests you.

Both of these are identical in function, by way of example. The second adds an unnecessary function/table lookup.
Code:
local player_name = GetFullName("player")
local player_name = select(1, GetFullName("player"))
  Reply With Quote