From 4d3d51b5dd28f8e2a56eb11545c5117f9eaf7680 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 2 Apr 2008 17:43:58 +0000 Subject: [PATCH] Fixed amb1577 - CreateConVar return documentation was incorrect --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401980 --- plugins/include/console.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/console.inc b/plugins/include/console.inc index 76c0d3bf..8d520828 100644 --- a/plugins/include/console.inc +++ b/plugins/include/console.inc @@ -392,7 +392,7 @@ native GetCmdArgString(String:buffer[], maxlength); * @param min Minimum floating point value that the convar can have if hasMin is true. * @param hasMax Optional boolean that determines if the convar has a maximum value. * @param max Maximum floating point value that the convar can have if hasMax is true. - * @return A handle to the newly created convar. If the convar already exists, INVALID_HANDLE is returned. + * @return A handle to the newly created convar. If the convar already exists, a handle to it will still be returned. * @error Convar name is blank or is the same as an existing console command. */ native Handle:CreateConVar(const String:name[], const String:defaultValue[], const String:description[]="", flags=0, bool:hasMin=false, Float:min=0.0, bool:hasMax=false, Float:max=0.0);