From ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24 Mon Sep 17 00:00:00 2001 From: onefang Date: Mon, 6 Sep 2021 21:32:24 +1000 Subject: Don't deactivate old menus. --- 1chatter.lsl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1chatter.lsl b/1chatter.lsl index 6fd89e8..8ce9237 100644 --- a/1chatter.lsl +++ b/1chatter.lsl @@ -1624,15 +1624,15 @@ d("listen 1ring.CHANNEL " + message + " -> " + button + " " + cmd + " " + data); { key a = llList2Key(Musers, i + uKEY); + // Test if they are still in the sim. if (ZERO_VECTOR != llGetAgentSize(a)) { if (now < (llList2Float(Musers, i + uTIME) + 300.0)) t += llList2List(Musers, i, i + uSTRIDE - 1); else { - llListenRemove(llList2Integer(Musers, i + uLSTN)); - s(a, "You have taken too long to respond to the menu, it's disabled now."); - a = NULL_KEY; +// s(a, "You have taken too long to respond to the menu, it's disabled now."); +// a = NULL_KEY; } } else -- cgit v1.1