From 59e2810b7b6d230b399d554a57872085c24fadab Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sat, 27 Mar 2010 08:09:36 -0400 Subject: [PATCH] In GenerateTooltipContent(): Fixed logic for displaying TRAINER acquire-type. --- Frame.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frame.lua b/Frame.lua index 75ad32e..8627a0b 100644 --- a/Frame.lua +++ b/Frame.lua @@ -711,7 +711,7 @@ do for id_num in pairs(acquire_info) do local trainer = private.trainer_list[id_num] - if location_id and trainer.location == location_id then + if not location_id or trainer.location == location_id then local display_tip = false color_1 = CATEGORY_COLORS["trainer"] -- 1.7.9.5