From 7e961bd9643fdba65deafec652c93e3d9f0812f2 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Wed, 17 Mar 2010 03:50:00 -0400 Subject: [PATCH] In addon:AddRecipeAcquire(): Fix longstanding (and yet somehow unreported) bug - the last acquire type/data in the list was never added. Fix was changing check from "i < numvars" to "i <= numvars". --- ARL.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARL.lua b/ARL.lua index fbb759e..78236e2 100644 --- a/ARL.lua +++ b/ARL.lua @@ -932,7 +932,7 @@ do twipe(location_list) twipe(location_checklist) - while i < numvars do + while i <= numvars do local location local acquire_type, acquire_id = select(i, ...) i = i + 2 -- 1.7.9.5