mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 22:45:43 +08:00
Correct the representation of the automatic null string
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user