Sam Harwood 2018-07-17 23:51:58 +02:00
Родитель b980d0275a
Коммит af8e852388
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -36,7 +36,7 @@ namespace Confuser.Core.API {
public IDataStore GetStore(MethodDef method) {
for (int i = dataStores.Count - 1; i >= 0; i--) {
var list = dataStores[i];
for (int j = list.Count - 1; j >= 0; i--) {
for (int j = list.Count - 1; j >= 0; j--) {
if (list[j].IsUsable(method))
return list[j];
}