View Single Post
01-15-24, 01:51 PM   #5
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
As Fizzlemizz mentioned, it's _G, which is the global table in Lua. At some point, the code you have, or the code you got from someone else, was subject to a replace all in an editor where they replaced the underscore character with "placeholder". Typical coding practices use the underscore as a throwaway object for function returns they don't want, but in the case of _G, it is part of the name of that object.
  Reply With Quote