Correct the representation of the automatic null string

This commit is contained in:
Melanie Thielker
2008-09-02 04:23:01 +00:00
parent e2a0a04beb
commit b7a4613a0d

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);