print(table.getn(szExtension_Locations) - (g_nNumTeleportEntries - 1));
print(table.getn(szExtension_Locations) - g_nNumTeleportEntries - 1);
Output:
125
123
Why do these two lines of code produce a different result? Nothing is happening to the variables in between. The code is in that exact order. Even if I swap them, they still produce 123 then 125.