Skip to content

Commit

Permalink
Merge pull request #1068 from OpenCollarTeam/Medea-Destiny-patch-7
Browse files Browse the repository at this point in the history
oc_bookmarks fix broken links
  • Loading branch information
Pingout authored Aug 5, 2024
2 parents 9b4277e + 92b9421 commit f2b5acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/collar/oc_bookmarks.lsl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/*
Medea Destiny -
Dec 2021 - Provided clickable SLURL feedback to command issuer
Aug 2024 - Fix for above, escaping sim name with spaces, issue #1026
*/

string g_sScriptVersion = "8.2";
Expand Down Expand Up @@ -354,7 +354,7 @@ TeleportTo(string sStr,key kIssuer) { //take a string in region (x,y,z) format,
llMapDestination(sRegion, g_vLocalPos, ZERO_VECTOR);
else //We've got RLV, let's use it
g_kRequestHandle = llRequestSimulatorData(sRegion, DATA_SIM_POS);
llRegionSayTo(kIssuer,0,"Sending "+llGetDisplayName(g_kWearer)+" to http://maps.secondlife.com/secondlife/"+sRegion+"/"+(string)((integer)g_vLocalPos.x) + "/"+(string)((integer)g_vLocalPos.y)+"/"+(string)((integer)g_vLocalPos.z)+".");
llRegionSayTo(kIssuer,0,"Sending "+llGetDisplayName(g_kWearer)+" to http://maps.secondlife.com/secondlife/"+llEscapeURL(sRegion)+"/"+(string)((integer)g_vLocalPos.x) + "/"+(string)((integer)g_vLocalPos.y)+"/"+(string)((integer)g_vLocalPos.z)+".");


}
Expand Down

0 comments on commit f2b5acb

Please # to comment.