WoWInterface SVN NightWatch

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 17 to Rev 18
    Reverse comparison

Rev 17 → Rev 18

NightWatch.lua
14,23 → 14,26
-- Listed here for Mikk's FindGlobals script.
-- GLOBALS: LibStub
 
local pairs = pairs
local print = print
local next = next
local format = string.format
local string_upper = string.upper
local string_gsub = string.gsub
local type = type
local wipe = wipe
local SendChatMessage = SendChatMessage
local UnitInRaid = UnitInRaid
local UnitInParty = UnitInParty
local GetNumRaidMembers = GetNumRaidMembers
local GetNumPartyMembers = GetNumPartyMembers
local InCombatLockdown = InCombatLockdown
local GetSpellInfo = GetSpellInfo
local UnitName = UnitName
local _G = getfenv(0)
local pairs = _G.pairs
local print = _G.print
local next = _G.next
local format = _G.string.format
local string_upper = _G.string.upper
local string_gsub = _G.string.gsub
local type = _G.type
 
local wipe = _G.wipe
local SendChatMessage = _G.SendChatMessage
local UnitInRaid = _G.UnitInRaid
local UnitInParty = _G.UnitInParty
local GetNumRaidMembers = _G.GetNumRaidMembers
local GetNumPartyMembers = _G.GetNumPartyMembers
local InCombatLockdown = _G.InCombatLockdown
local GetSpellInfo = _G.GetSpellInfo
local UnitName = _G.UnitName
 
 
local addonVersion = GetAddOnMetadata("NightWatch", "Version")
local dbVers = 8