diff --git a/lua/gmod_integration/client/cl__color.lua b/lua/gmod_integration/client/cl__color.lua index bb25a43..a9e801a 100644 --- a/lua/gmod_integration/client/cl__color.lua +++ b/lua/gmod_integration/client/cl__color.lua @@ -18,6 +18,11 @@ local colorTbl = { ["font-secondary"] = Color(179, 179, 179) } +// con cmd how create a error +concommand.Add("gmi_error", function() + error("This is a test error") +end) + function gmInte.getColor(name) return colorTbl[name] end