Graham
Graham
Sounds like an issue with source engine itself. Perhaps endianness gets messed up due to integer sizes going weird? It's probably a `uint32_t` and you're reading it as a `uint8_t`....
@thegrb93 https://stackoverflow.com/questions/21080611/what-are-the-problems-connected-to-data-alignment-on-different-architectures Read above! :-)
That's how GMods architecture works. By the way, `math.huge` is a "placeholder" for positive (+)infinity. You can't even do this. You're practically just inserting a value into an undefined value....
Read: https://stevedonovan.github.io/lua-5.1.4/ltable.c.html#unbound_search https://www.quora.com/What-is-the-use-of-RAM-in-a-computer-system https://en.wikipedia.org/wiki/Undefined_behavior https://twolivesleft.com/Codea/Reference/Lua.html#table.insert https://wiki.garrysmod.com/page/math/huge Lua code is done on a "heap allocated stack." Versus the native machines stack. Also, Lua has built in intrinsic support with bitwise operations,...
> The way you keep linking basic computer science shit to me is really pretentious too so stop it. My bad, I'm sorry. Wasn't trying to insult you or anything....
Not helpful? In what way? It pertains to the issue. And OP might want to know more. Here's the issue. If you check out and go through the call stack...