# HG changeset patch # User MMOSimca # Date 1425963361 14400 # Node ID cecd877476ffec96ba668a8fea2d54e0a9e78f92 # Parent 2151f136ca5c2e00456e8ab51d045734f2f7d6f6 Fixed naming mistake preventing fishing loot from being recorded in certain cases. diff -r 2151f136ca5c -r cecd877476ff Main.lua --- a/Main.lua Sun Mar 01 00:01:03 2015 -0500 +++ b/Main.lua Tue Mar 10 00:56:01 2015 -0400 @@ -2085,7 +2085,7 @@ end for index = 1, #current_loot.list do - table.insert(current_loot.zone_data[location_token].drops, current_loot.loot_list[index]) + table.insert(current_loot.zone_data[location_token].drops, current_loot.list[index]) end end, }