Skip to content

Commit

Permalink
remove emergency fix for sensor function
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiLacrima authored Jan 27, 2025
1 parent 3986edd commit fc54ac8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/collar/oc_dialog.lsl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Medea Destiny -
Nikki Lacrima
Aug 2023 - Changed functions for clearing auth so auth doesn't persist for open menus
Sep 2024 - Invalidate all menus except wearer when public or group mode is turned off
Jan 2025 - Improved memory handling in SortUUIDList, clear resources as early as possible
Jan 2025 - Improved memory handling in SortUUIDList, clear resources as early as possible, remove the emergency fix for sensor function
*/
integer CMD_ZERO = 0;
Expand Down Expand Up @@ -564,9 +564,11 @@ state active


sensor(integer num_detected){
if(num_detected>16) num_detected=16;
//if(num_detected>16) num_detected=16;
//LL just expanded sensor to up to 32 hits. Thanks LL, but there's a ton of content
//out there not designed to cope with that which are gonna stack-heap now. For now at least we'll trim back to 16.
//emergency fix removed with updated memory handling in sortuuid function

//get sensot request info from list
list lParams=llParseStringKeepNulls(llList2String(g_lSensorDetails,0), ["|"], []);
key kID = (key)llList2String(g_lSensorDetails,1);
Expand Down

0 comments on commit fc54ac8

Please sign in to comment.