Skip to content

Commit

Permalink
Closes #84 OpenSim has long fixed that bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lickx committed Sep 3, 2023
1 parent 51a61e8 commit 2b63914
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/installer/oc_update_shim.lsl
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ default
Check4Core5Script();
string sResponse = llDumpList2String([sType, sName, sCmd], "|");
//Debug("responding: " + response);
// Possible OpenSim bug
// Bug in older OpenSim versions, fixed since 2018-10-18:
// 7391: Messages sent with llRegionSayTo are only received by one listening script per prim (object?)
// See: http://opensimulator.org/mantis/view.php?id=7391
// So we use the less optimal llRegionSay() instead
//llRegionSayTo(kID, iChannel, sResponse);
llRegionSay(iChannel, sResponse);
//llRegionSay(iChannel, sResponse); // workaround
llRegionSayTo(kID, iChannel, sResponse);
} else if (sMsg == "Core5Done") Check4Core5Script();
else if (llSubStringIndex(sMsg, "DONE") == 0){
//restore settings
Expand Down

0 comments on commit 2b63914

Please sign in to comment.