mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-26 09:13:53 +01:00
Fix vector aliases
This commit is contained in:
parent
137e471262
commit
245284f5f8
@ -26,7 +26,7 @@ metatable = {
|
|||||||
end,
|
end,
|
||||||
__newindex = function(table, key, value)
|
__newindex = function(table, key, value)
|
||||||
-- TODO
|
-- TODO
|
||||||
local index = letters[key]
|
local index = index_aliases[key]
|
||||||
if index ~= nil then
|
if index ~= nil then
|
||||||
return rawset(table, index, value)
|
return rawset(table, index, value)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user