LUA Format

I'm not really fond of the output generated by FLEd, so lacking the source I created a series of MiniTrue substitutions to make it look a little nicer. Normally, FLEd would generate something that looks like:
			pos={
				-78.16786999999999,
				-200,
				-5.998077
			},
			orient={
				{
					-0.6806950000000001,
					0,
					-0.732567
				},
				{
					0,
					1,
					0
				},
				{
					0.732567,
					0,
					-0.6806950000000001
				}
			}
Running luafmt.bat on the output will turn the above into:
			pos = { -78.16787, -200, -5.998077 },
			orient =
			{
				{ -0.680695, 0, -0.732567 },
				{ 0, 1, 0 },
				{ 0.732567, 0, -0.680695 }
			}