Skip to content

Commit

Permalink
Remove suspicious comma
Browse files Browse the repository at this point in the history
  • Loading branch information
gromchek authored and killerwife committed Jan 8, 2024
1 parent 06e56c4 commit 4f146c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/AI/ScriptDevAI/base/TimerAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ void TimerManager::GetAIInformation(ChatHandler& reader)
for (auto itr = m_timers.begin(); itr != m_timers.end(); ++itr)
{
Timer& timer = (*itr).second;
output += "Timer ID: " + std::to_string(timer.id) + " Timer: " + std::to_string(timer.timer), +" Disabled: " + std::to_string(timer.disabled) + "\n";
output += "Timer ID: " + std::to_string(timer.id) + " Timer: " + std::to_string(timer.timer) +" Disabled: " + std::to_string(timer.disabled) + "\n";
}
reader.PSendSysMessage("%s", output.data());
}
Expand Down Expand Up @@ -301,7 +301,7 @@ void CombatActions::GetAIInformation(ChatHandler& reader)
for (auto itr = m_combatActions.begin(); itr != m_combatActions.end(); ++itr)
{
Timer& timer = (*itr).second;
output += "Timer ID: " + std::to_string(timer.id) + " Timer: " + std::to_string(timer.timer), +" Disabled: " + std::to_string(timer.disabled) + "\n";
output += "Timer ID: " + std::to_string(timer.id) + " Timer: " + std::to_string(timer.timer) +" Disabled: " + std::to_string(timer.disabled) + "\n";
}
reader.PSendSysMessage("%s", output.data());
}

0 comments on commit 4f146c6

Please sign in to comment.