Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/game/shared/neo/neo_ghost_cap_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,10 @@ void CNEOGhostCapturePoint::Spawn(void)
{
// We could recover, but it's probably better to break the capzone
// and throw a nag message in console so the mapper can fix their error.
Warning("Capzone had an invalid owning team: %i. Expected %i (Jinrai), or %i (NSF).\n",
m_iOwningTeam.Get(), NEO_FGD_TEAMNUM_ATTACKER, NEO_FGD_TEAMNUM_DEFENDER);
Warning("Capzone at position %.1f %.1f %.1f had an invalid owning team: %i. "
"Expected %i (Jinrai), %i (NSF), or %i (neutral).\n",
GetAbsOrigin().x, GetAbsOrigin().y, GetAbsOrigin().z,
m_iOwningTeam.Get(), NEO_FGD_TEAMNUM_ATTACKER, NEO_FGD_TEAMNUM_DEFENDER, NEO_FGD_TEAMNUM_NEUTRAL);

// Nobody will be able to cap here.
m_iOwningTeam = TEAM_INVALID;
Expand Down