Small bug fixes and improvements

This commit is contained in:
Tercio Jose
2022-10-10 13:26:13 -03:00
parent b588d5e30c
commit 1ed29008aa
119 changed files with 6556 additions and 6650 deletions
+2 -2
View File
@@ -14,13 +14,13 @@ do
return _error.errortext
end
_error.__call = function(_this)
print (_this.errortext)
print(_this.errortext)
end
function _detalhes:NewError (_msg)
local this_error = {}
this_error.errortext = _msg
setmetatable (this_error, _error)
setmetatable(this_error, _error)
return this_error
end