Correct the representation of the automatic null string

0.6.0-stable
Melanie Thielker 2008-09-02 04:23:01 +00:00
parent e2a0a04beb
commit b7a4613a0d
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
return new Constant(p, constantType, "0.0");
case "string":
case "key":
return new Constant(p, constantType, "");
return new Constant(p, constantType, "\"\"");
case "list":
ArgumentList al = new ArgumentList(p);
return new ListConstant(p, al);