Return NULL_KEY from llGetTexture if a non-existent face is indicated, rather than ""

As per http://wiki.secondlife.com/wiki/LlGetTexture
remove-scene-viewer
Justin Clark-Casey (justincc) 2011-10-04 00:15:48 +01:00
parent 8a6e6866d9
commit a8af0a5ba8
1 changed files with 1 additions and 1 deletions

View File

@ -1935,7 +1935,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
} }
else else
{ {
return String.Empty; return UUID.Zero.ToString();
} }
} }