diff --git a/world/client.cpp b/world/client.cpp index cd10b8228..50b56cb0d 100644 --- a/world/client.cpp +++ b/world/client.cpp @@ -1442,7 +1442,7 @@ bool Client::OPCharCreate(char *name, CharCreate_Struct *cc) } } else { - clog(WORLD__CLIENT, "Found 'TitaniumStartZoneID' rule setting: %i", RuleI(World, TitaniumStartZoneID)); + Log.Out(Logs::General, Logs::World_Server, "Found 'TitaniumStartZoneID' rule setting: %i", RuleI(World, TitaniumStartZoneID)); if (RuleI(World, TitaniumStartZoneID) > 0) { /* if there's a startzone variable put them in there */ pp.zone_id = RuleI(World, TitaniumStartZoneID); diff --git a/zone/entity.cpp b/zone/entity.cpp index 54a2b7aee..5600ccc83 100644 --- a/zone/entity.cpp +++ b/zone/entity.cpp @@ -3509,32 +3509,6 @@ bool EntityList::LimitCheckName(const char *npc_name) return true; } -void EntityList::RadialSetLogging(Mob *around, bool enabled, bool clients, - bool non_clients, float range) -{ - float range2 = range * range; - - auto it = mob_list.begin(); - while (it != mob_list.end()) { - Mob *mob = it->second; - - ++it; - - if (mob->IsClient()) { - if (!clients) - continue; - } else { - if (!non_clients) - continue; - } - - if (ComparativeDistance(around->GetPosition(), mob->GetPosition()) > range2) - continue; - - - } -} - void EntityList::UpdateHoTT(Mob *target) { auto it = client_list.begin();