Fix embedded assignments for OpenSim in AVselect/root-security

This commit is contained in:
Sei Lisa 2017-08-29 12:55:26 +02:00 committed by Sei-Lisa
parent 29ec5d7dd1
commit d8069cd1a9
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ main_menu()
dialog(string text, list menu_items)
{
llListenRemove(menu_handle);
menu_handle = llListen(menu_channel = ((integer)llFrand(0x7FFFFF80) + 1) * -1, "", llGetOwner(), ""); // 7FFFFF80 = max float < 2^31
menu_handle = llListen((menu_channel = ((integer)llFrand(0x7FFFFF80) + 1) * -1), "", llGetOwner(), ""); // 7FFFFF80 = max float < 2^31
llDialog(llGetOwner(), product + "\n\n" + text, order_buttons(menu_items), menu_channel);
llSetTimerEvent(600);
}