Mercurial > wow > wowdb-profiler
comparison Main.lua @ 91:63287a0a0a2e
Remove version check to disable the AddOn on 4.3.4.
author | James D. Callahan III <jcallahan@curse.com> |
---|---|
date | Tue, 28 Aug 2012 10:32:27 -0500 |
parents | 2f8390cf1bd1 |
children | c62f2af669d9 |
comparison
equal
deleted
inserted
replaced
90:2f8390cf1bd1 | 91:63287a0a0a2e |
---|---|
15 | 15 |
16 ----------------------------------------------------------------------- | 16 ----------------------------------------------------------------------- |
17 -- AddOn namespace. | 17 -- AddOn namespace. |
18 ----------------------------------------------------------------------- | 18 ----------------------------------------------------------------------- |
19 local ADDON_NAME, private = ... | 19 local ADDON_NAME, private = ... |
20 | |
21 -- TODO: Remove this once 5.0.4 hits Live. | |
22 if private.wow_version == "4.3.4" then | |
23 return | |
24 end | |
25 | 20 |
26 local LibStub = _G.LibStub | 21 local LibStub = _G.LibStub |
27 local WDP = LibStub("AceAddon-3.0"):NewAddon(ADDON_NAME, "AceEvent-3.0", "AceTimer-3.0") | 22 local WDP = LibStub("AceAddon-3.0"):NewAddon(ADDON_NAME, "AceEvent-3.0", "AceTimer-3.0") |
28 | 23 |
29 local deformat = LibStub("LibDeformat-3.0") | 24 local deformat = LibStub("LibDeformat-3.0") |