mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 01:01:30 +00:00
[Logging] Remove noisy raid/group/forage errors (#2952)
This commit is contained in:
parent
ee6c9a2ad7
commit
d6c6b78d8a
@ -552,12 +552,10 @@ void EntityList::MobProcess()
|
|||||||
#endif
|
#endif
|
||||||
Group *g = GetGroupByMob(mob);
|
Group *g = GetGroupByMob(mob);
|
||||||
if(g) {
|
if(g) {
|
||||||
LogError("About to delete a client still in a group");
|
|
||||||
g->DelMember(mob);
|
g->DelMember(mob);
|
||||||
}
|
}
|
||||||
Raid *r = entity_list.GetRaidByClient(mob->CastToClient());
|
Raid *r = entity_list.GetRaidByClient(mob->CastToClient());
|
||||||
if(r) {
|
if(r) {
|
||||||
LogError("About to delete a client still in a raid");
|
|
||||||
r->MemberZoned(mob->CastToClient());
|
r->MemberZoned(mob->CastToClient());
|
||||||
}
|
}
|
||||||
entity_list.RemoveClient(id);
|
entity_list.RemoveClient(id);
|
||||||
|
|||||||
@ -92,7 +92,6 @@ uint32 ZoneDatabase::GetZoneForage(uint32 ZoneID, uint8 skill) {
|
|||||||
|
|
||||||
item[index] = atoi(row[0]);
|
item[index] = atoi(row[0]);
|
||||||
chance[index] = atoi(row[1]) + chancepool;
|
chance[index] = atoi(row[1]) + chancepool;
|
||||||
LogError("Possible Forage: [{}] with a [{}] chance", item[index], chance[index]);
|
|
||||||
chancepool = chance[index];
|
chancepool = chance[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user