Skip to content

Commit 60cf86e

Browse files
committed
up
1 parent ad64cda commit 60cf86e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kbe/src/server/cellapp/entity.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ void Entity::debugAOI()
19701970
{
19711971
if(pWitness_ == NULL)
19721972
{
1973-
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{}::debugAOI: {} has no witness!\n", scriptName(), this->id()));
1973+
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{}::debugAOI: {} has no witness!", scriptName(), this->id()));
19741974
return;
19751975
}
19761976

@@ -1987,7 +1987,7 @@ void Entity::debugAOI()
19871987
}
19881988
}
19891989

1990-
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{}::debugAOI: {} size={}, Seen={}, Pending={}\n", scriptName(), this->id(),
1990+
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{}::debugAOI: {} size={}, Seen={}, Pending={}", scriptName(), this->id(),
19911991
pWitness_->aoiEntities().size(), pWitness_->aoiEntities().size() - pending, pending));
19921992

19931993
iter = pWitness_->aoiEntities().begin();
@@ -2004,7 +2004,7 @@ void Entity::debugAOI()
20042004
dist = KBEVec3Length(&distvec);
20052005
}
20062006

2007-
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{7}::debugAOI: {0} {1}({2}), position({3}.{4}.{5}), dist={6}, Seen={8}\n",
2007+
Cellapp::getSingleton().getScript().pyPrint(fmt::format("{7}::debugAOI: {0} {1}({2}), position({3}.{4}.{5}), dist={6}, Seen={8}",
20082008
this->id(),
20092009
(pEntity != NULL ? pEntity->scriptName() : "unknown"),
20102010
(*iter)->id(),

0 commit comments

Comments
 (0)