aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/1ring.lsl
diff options
context:
space:
mode:
Diffstat (limited to '1ring.lsl')
-rw-r--r--1ring.lsl7
1 files changed, 6 insertions, 1 deletions
diff --git a/1ring.lsl b/1ring.lsl
index a50d28e..4665403 100644
--- a/1ring.lsl
+++ b/1ring.lsl
@@ -1472,10 +1472,15 @@ d("HEY leashy! " + URL);
1472 for (i = 0; i < l; ++i) 1472 for (i = 0; i < l; ++i)
1473 { 1473 {
1474 string folder = llList2String(folders, i); 1474 string folder = llList2String(folders, i);
1475 items += [folder, "+ " + folder, "- " + folder]; 1475
1476 if ("" != folder)
1477 items += [folder, "+ " + folder, "- " + folder];
1476 } 1478 }
1479 if (0 != llGetListLength(items))
1477 dynamicMenu(someBoss, "clothes", "PUTON", "Please select the outfit to put on", 1480 dynamicMenu(someBoss, "clothes", "PUTON", "Please select the outfit to put on",
1478 llDumpList2String(items, "|"), "PUTON", 2); 1481 llDumpList2String(items, "|"), "PUTON", 2);
1482 else
1483 s("You have no outfits in your #RLV folder.");
1479 } 1484 }
1480 } 1485 }
1481 1486