From 4b2d536b192b3feade24302ccf9e06a1a3a69146 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sun, 3 Apr 2011 21:28:04 -0500 Subject: [PATCH] Why the fuck was tooltip information for recipe achievements in an @alpha@ block? --- Interface/List.lua | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Interface/List.lua b/Interface/List.lua index 1f75d93..df3d9a9 100644 --- a/Interface/List.lua +++ b/Interface/List.lua @@ -1794,17 +1794,14 @@ do Tooltip_AddWorldDrop(recipe_id, id_num, location, addline_func) elseif acquire_type == A.CUSTOM then addline_func(0, -1, false, private.custom_list[id_num].name, CATEGORY_COLORS["custom"]) - --@alpha@ elseif acquire_type == A.ACHIEVEMENT then Tooltip_AddAchievement(recipe_id, id_num, addline_func) - elseif can_display then - -- Unhandled + else addline_func(0, -1, 0, L["Unhandled Recipe"], BASIC_COLORS["normal"]) - --@end-alpha@ end - end -- for id_num - end -- if can_display - end -- for acquire_type + end + end + end end ------------------------------------------------------------------------------- -- 1.7.9.5