Unusual Globals

I’ve been making a game, and I’ve noticed “lpeg” and “physics” are both getting picked up by the Btl Global System when I call “extraGlobals”. I can trace the “lpeg” back to Json (I think), but physics I’m stumped on. I can’t figure out why localizing it is still adding it to the globals.

[lua]

 

local btl=require(“files.btl”)

 

btl.extraGlobals()

 

local physics=require(“physics”)

 

btl.extraGlobals()

[/lua]

 

Terminal output:

 

No Extra Globals

Extra Globals - 

  physics

 

 

C