mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-20 13:21:28 +00:00
Shared Bank bug fix?
This commit is contained in:
parent
0bdbc5f5c9
commit
eb7d77bcac
@ -438,9 +438,7 @@ bool SharedDatabase::GetSharedBank(uint32 id, Inventory *inv, bool is_charid)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!row[9])
|
if (row[9]) {
|
||||||
continue;
|
|
||||||
|
|
||||||
std::string data_str(row[9]);
|
std::string data_str(row[9]);
|
||||||
std::string idAsString;
|
std::string idAsString;
|
||||||
std::string value;
|
std::string value;
|
||||||
@ -463,6 +461,7 @@ bool SharedDatabase::GetSharedBank(uint32 id, Inventory *inv, bool is_charid)
|
|||||||
else
|
else
|
||||||
value.push_back(v);
|
value.push_back(v);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
put_slot_id = inv->PutItem(slot_id, *inst);
|
put_slot_id = inv->PutItem(slot_id, *inst);
|
||||||
safe_delete(inst);
|
safe_delete(inst);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user