From 24d0da64478b4b4b4077a83e4aa05cad9d11f1b6 Mon Sep 17 00:00:00 2001 From: Pingout Duffield Date: Tue, 23 Apr 2024 23:21:38 -0400 Subject: [PATCH 1/2] Update oc_addons.lsl Reference Issue #1038 --- src/collar/oc_addons.lsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collar/oc_addons.lsl b/src/collar/oc_addons.lsl index 830152273..7448024e5 100644 --- a/src/collar/oc_addons.lsl +++ b/src/collar/oc_addons.lsl @@ -330,6 +330,7 @@ state active } else if(PacketType == "from_collar")return; // We should never listen to another collar's LMs, wearer should not be wearing more than one anyway. else if(PacketType == "online"){ // this is a initial handshake + if(llJsonGetValue(m,["addon_name"])=="OpenCollar") return; if(llJsonGetValue(m,["kID"])==(string)llGetOwner()){ // begin to pass stuff to link messages! @@ -558,4 +559,3 @@ state active //llOwnerSay(llDumpList2String([iSender,iNum,sStr,kID],"^")); } } - From ad410f6f7dd3fe6b55a9dda9b64e0f97f7c66b9c Mon Sep 17 00:00:00 2001 From: Pingout Duffield Date: Fri, 26 Apr 2024 07:16:59 -0400 Subject: [PATCH 2/2] Update oc_addons.lsl Document the change --- src/collar/oc_addons.lsl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/collar/oc_addons.lsl b/src/collar/oc_addons.lsl index 7448024e5..4eeaf61fe 100644 --- a/src/collar/oc_addons.lsl +++ b/src/collar/oc_addons.lsl @@ -9,12 +9,13 @@ Medea (medea.destiny) Sept 2021 - Provided auth failure mode for menu. Insufficient auth now provides suitable notification to user and respawns main menu. Fixes issue #665 - KristenMynx Dec 2021 - Fix timeout removal stride May 2022 - Fix offline removal stride - Reduce chatter Jun 2022 - Reduce chatter more +Ping (pingout.duffield) + April 2024 - Fix at Initial Handshake to disregard any nearby rezzed collar. Ref Issue #1038