From fc827612b5dccbcc3890ec7bfaaf0f850ebafc16 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sat, 6 Mar 2010 16:32:26 -0500 Subject: [PATCH] Use table.wipe() instead of twipe() --- Player.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Player.lua b/Player.lua index 14e3698..d2bf3e2 100644 --- a/Player.lua +++ b/Player.lua @@ -24,7 +24,6 @@ local _G = getfenv(0) local table = _G.table -local twipe = table.wipe local pairs = _G.pairs @@ -178,7 +177,7 @@ do -- Determines if the player can learn a reputation recipe. -- TODO: This is currently only used in addon:OnEnable(), which means that reputation gains are NOT tracked. This function should be used to do so. -Torhal function Player:SetReputationLevels() - twipe(rep_list) + table.wipe(rep_list) -- Number of factions before we expand local num_factions = GetNumFactions() -- 1.7.9.5