fix access to console.__add_command

This commit is contained in:
Xertis
2025-11-21 21:33:48 +03:00
parent e7e47df7bf
commit 76be41e8f2
3 changed files with 18 additions and 4 deletions
+7 -3
View File
@@ -167,12 +167,16 @@ function table.remove_value(t, x)
end
end
function table.insert_unique(t, val)
if table.has(t, val) then
function table.insert_unique(t, pos_or_val, val)
if table.has(t, val or pos_or_val) then
return
end
table.insert(t, val)
if val then
table.insert(t, pos_or_val, val)
else
table.insert(t, pos_or_val)
end
end
function table.tostring(t)