From f1d2b9a357fb73c82564604765c0fc5647682cc9 Mon Sep 17 00:00:00 2001 From: pompachomp Date: Sun, 6 Sep 2009 02:10:19 +0000 Subject: [PATCH] Prevent a recipe with the word 'rainbow' in it, to be flagged as missing the 'bow' flag. --- ARLDatamine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 04985ee..cb2bc10 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1637,7 +1637,7 @@ do scan_data.Wand = true elseif (strmatch(text, "thrown")) then scan_data.Thrown = true - elseif (strmatch(text, "bow")) then + elseif (strmatch(text, "bow") and (strmatch(text, "rainbow") == nil)) then scan_data.Bow = true elseif (strmatch(text, "crossbow")) then scan_data.CrossBow = true -- 1.7.9.5