mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 01:01:30 +00:00
Fix DeleteMerchantTemp from error message removal
This commit is contained in:
parent
4efa8a18eb
commit
00db3d270c
@ -2493,11 +2493,8 @@ void ZoneDatabase::SaveMerchantTemp(uint32 npcid, uint32 slot, uint32 item, uint
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ZoneDatabase::DeleteMerchantTemp(uint32 npcid, uint32 slot){
|
void ZoneDatabase::DeleteMerchantTemp(uint32 npcid, uint32 slot){
|
||||||
|
|
||||||
std::string query = StringFormat("DELETE FROM merchantlist_temp WHERE npcid=%d AND slot=%d", npcid, slot);
|
std::string query = StringFormat("DELETE FROM merchantlist_temp WHERE npcid=%d AND slot=%d", npcid, slot);
|
||||||
auto results = QueryDatabase(query);
|
QueryDatabase(query);
|
||||||
if (!results.Success())
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ZoneDatabase::UpdateZoneSafeCoords(const char* zonename, float x=0, float y=0, float z=0) {
|
bool ZoneDatabase::UpdateZoneSafeCoords(const char* zonename, float x=0, float y=0, float z=0) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user