Merge pull request #1620 from ebaydayz/patch-6

Fix trader menu expected array error
This commit is contained in:
vbawol
2015-02-05 10:14:55 -06:00

View File

@@ -11,7 +11,7 @@ lbClear TraderDialogCatList;
lbClear TraderDialogItemList; lbClear TraderDialogItemList;
TraderCurrentCatIndex = -1; TraderCurrentCatIndex = -1;
TraderItemList = -1; TraderItemList = [];
TraderCatList = []; TraderCatList = [];
{ {
@@ -21,4 +21,4 @@ TraderCatList = [];
} count _trader_data; } count _trader_data;
waitUntil { !dialog }; waitUntil { !dialog };
TraderCurrentCatIndex = -1; TraderCurrentCatIndex = -1;
TraderCatList = -1; TraderCatList = [];