From a39327fd11809984dcd9d87ff2a7aee3916cfb8e Mon Sep 17 00:00:00 2001 From: rabbit Date: Tue, 11 Nov 2008 09:01:12 +0000 Subject: [PATCH] Fix warnings about missing babble libraries. --- AckisRecipeList.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua index aecb8a3..4a93128 100644 --- a/AckisRecipeList.lua +++ b/AckisRecipeList.lua @@ -33,28 +33,28 @@ local addon = LibStub("AceAddon-3.0"):GetAddon(MODNAME) -- Lets check to see if we have the needed libraries loaded (these are manditory to run) if (not LibStub:GetLibrary("LibBabble-Faction-3.0", true)) then - self:Print("LibBabble-Faction-3.0 not loaded. Addon cannot run.") + AckisRecipeList:Print("LibBabble-Faction-3.0 not loaded. Addon cannot run.") return end if (not LibStub:GetLibrary("LibBabble-Zone-3.0", true)) then - self:Print("LibBabble-Zone-3.0 not loaded. Addon cannot run.") + AckisRecipeList:Print("LibBabble-Zone-3.0 not loaded. Addon cannot run.") return end if (not LibStub:GetLibrary("LibBabble-Boss-3.0", true)) then - self:Print("LibBabble-Boss-3.0 not loaded. Addon cannot run.") + AckisRecipeList:Print("LibBabble-Boss-3.0 not loaded. Addon cannot run.") return end if (not LibStub:GetLibrary("AceLocale-3.0", true)) then - self:Print("AceLocale-3.0 not loaded. Addon cannot run.") + AckisRecipeList:Print("AceLocale-3.0 not loaded. Addon cannot run.") return end -- 1.7.9.5