Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Preventing C Stack Overflows with __index?

Asked by
marfit 104
4 years ago
Edited 4 years ago

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?

01local Table = {}
02local Metatable = {}
03 
04Metatable.__index = function(Key,Value)
05    if Value > 10 then
06        Table[Key] = 10
07    else
08        Table[Key] = Value
09    end
10end

1 answer

Log in to vote
0
Answered by 4 years ago

should be using .__newindex instead of __index

Ad

Answer this question