Hello! I am having an issue where I am overriding the table's __index
method, but whenever I index the table, I get a C Stack Overflow. Why is this?
01 | local Table = { } |
02 | local Metatable = { } |
03 |
04 | Metatable.__index = function (Key,Value) |
05 | if Value > 10 then |
06 | Table [ Key ] = 10 |
07 | else |
08 | Table [ Key ] = Value |
09 | end |
10 | end |