Quantcast

* Menu no longer requires an arg, so remove that from the options code.

James Whitehead II [04-20-07 - 01:55]
* Menu no longer requires an arg, so remove that from the options code.
Filename
CliqueOptions.lua
diff --git a/CliqueOptions.lua b/CliqueOptions.lua
index 0319bd6..7368485 100644
--- a/CliqueOptions.lua
+++ b/CliqueOptions.lua
@@ -1219,8 +1219,6 @@ function Clique:ButtonOnClick(button)
 			issue = "You must supply either a spell name and optionally an item slot/bag or name to consume when creating a \"spell\" action."
 		elseif entry.type == "item" and not ((entry.arg1 and entry.arg2) or entry.arg3) then
 			issue = "You must supply either a bag/slot, or an item name to use."
-		elseif entry.type == "menu" and not entry.arg1 then
-			issue = "You must supply a menu function for action type \"menu\"."
 		elseif entry.type == "macro" and arg1 and arg2 then
 			issue = "You must specify EITHER a macro index, or macro text, not both."
 		elseif entry.type == "macro" and not arg1 and not arg2 then