diff options
author | onefang | 2021-09-06 21:32:24 +1000 |
---|---|---|
committer | onefang | 2021-09-06 21:32:24 +1000 |
commit | ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24 (patch) | |
tree | a992f7efcddc8d469a5c1ee4ac88211c814b81e9 | |
parent | Shorten the menu text so it stops bitching. (diff) | |
download | 1ring-ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24.zip 1ring-ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24.tar.gz 1ring-ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24.tar.bz2 1ring-ee1fa1482fa5e58ea8f840ee1c3a2065a95a2d24.tar.xz |
Don't deactivate old menus.
Diffstat (limited to '')
-rw-r--r-- | 1chatter.lsl | 6 |
1 files 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); | |||
1624 | { | 1624 | { |
1625 | key a = llList2Key(Musers, i + uKEY); | 1625 | key a = llList2Key(Musers, i + uKEY); |
1626 | 1626 | ||
1627 | // Test if they are still in the sim. | ||
1627 | if (ZERO_VECTOR != llGetAgentSize(a)) | 1628 | if (ZERO_VECTOR != llGetAgentSize(a)) |
1628 | { | 1629 | { |
1629 | if (now < (llList2Float(Musers, i + uTIME) + 300.0)) | 1630 | if (now < (llList2Float(Musers, i + uTIME) + 300.0)) |
1630 | t += llList2List(Musers, i, i + uSTRIDE - 1); | 1631 | t += llList2List(Musers, i, i + uSTRIDE - 1); |
1631 | else | 1632 | else |
1632 | { | 1633 | { |
1633 | llListenRemove(llList2Integer(Musers, i + uLSTN)); | 1634 | // s(a, "You have taken too long to respond to the menu, it's disabled now."); |
1634 | s(a, "You have taken too long to respond to the menu, it's disabled now."); | 1635 | // a = NULL_KEY; |
1635 | a = NULL_KEY; | ||
1636 | } | 1636 | } |
1637 | } | 1637 | } |
1638 | else | 1638 | else |