# HG changeset patch # User James D. Callahan III # Date 1351799187 18000 # Node ID 48b43068e2e05fc3a84756b65538aa47bcb7fb24 # Parent ac9f0ccb27a8cfc3d01c651225cdbf12e1cb4970 Renamed the LOOT_UPDATE/VERIFY_FUNCS tables to LOOT_OPENED_X for clarification. diff -r ac9f0ccb27a8 -r 48b43068e2e0 Main.lua --- a/Main.lua Thu Nov 01 14:41:36 2012 -0500 +++ b/Main.lua Thu Nov 01 14:46:27 2012 -0500 @@ -1308,7 +1308,7 @@ end - local LOOT_VERIFY_FUNCS = { + local LOOT_OPENED_VERIFY_FUNCS = { [AF.ITEM] = function() local locked_item_id @@ -1353,7 +1353,7 @@ } - local LOOT_UPDATE_FUNCS = { + local LOOT_OPENED_UPDATE_FUNCS = { [AF.ITEM] = function() GenericLootUpdate("items") end, @@ -1458,8 +1458,8 @@ Debug(("current_action.target_type: %s"):format(private.ACTION_TYPE_NAMES[current_action.target_type])) end - local verify_func = LOOT_VERIFY_FUNCS[current_action.target_type] - local update_func = LOOT_UPDATE_FUNCS[current_action.target_type] + local verify_func = LOOT_OPENED_VERIFY_FUNCS[current_action.target_type] + local update_func = LOOT_OPENED_UPDATE_FUNCS[current_action.target_type] if not verify_func or not update_func then return