mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-13 03:22:40 -04:00
Core/AI: Some code style cleanup
This commit is contained in:
@@ -54,7 +54,7 @@ void SmartWaypointMgr::LoadFromDB()
|
||||
|
||||
do
|
||||
{
|
||||
Field *fields = result->Fetch();
|
||||
Field* fields = result->Fetch();
|
||||
uint32 entry = fields[0].GetUInt32();
|
||||
uint32 id = fields[1].GetUInt32();
|
||||
float x,y,z;
|
||||
@@ -62,7 +62,7 @@ void SmartWaypointMgr::LoadFromDB()
|
||||
y = fields[3].GetFloat();
|
||||
z = fields[4].GetFloat();
|
||||
|
||||
WayPoint *wp = new WayPoint(id, x, y, z);
|
||||
WayPoint* wp = new WayPoint(id, x, y, z);
|
||||
|
||||
if (last_entry != entry)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user