Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emergency oc_dialog.lsl fix #1034

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/collar/oc_dialog.lsl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ Medea Destiny -
version of function now works with prompts of any length and does not break up words.
- Changed prompt for button descriptions in local chat from "Please check..." to "See..." to trigger it less often
- Added warning text to prompt when prompt is trunctated, so menu prompt text will now show "(CONT. IN LOCAL CHAT)"
Mar 2024 - Emergency fix for extended sensor function flooding memory and crashing script

Nikki Lacrima
Aug 2023 - Changed functions for clearing auth so auth doesn't persist for open menus

*/
integer CMD_ZERO = 0;
integer CMD_OWNER = 500;
Expand Down Expand Up @@ -566,6 +571,9 @@ state active


sensor(integer num_detected){
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.
//get sensot request info from list
list lParams=llParseStringKeepNulls(llList2String(g_lSensorDetails,0), ["|"], []);
key kID = (key)llList2String(g_lSensorDetails,1);
Expand Down
Loading