Skip to content

Commit

Permalink
More Swap Item Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kestrelm committed Apr 26, 2018
1 parent 8bd1fc5 commit 425f007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CreatureMeshBone.js
Original file line number Diff line number Diff line change
Expand Up @@ -4061,10 +4061,10 @@ CreatureManager.prototype.RunUVItemSwap = function()

for(var cur_action_key in active_swap_actions)
{
if (cur_action_key in regions_map.count)
if (cur_action_key in regions_map)
{
var swap_tag = active_swap_actions[cur_action_key];
var swap_list = this.swap_packets[cur_action_key];
var swap_list = swap_packets[cur_action_key];
for(var j = 0; j < swap_list.length; j++)
{
var cur_item = swap_list[j];
Expand Down

0 comments on commit 425f007

Please sign in to comment.