Skip to content

Commit

Permalink
Fix inconsistent spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
adepierre committed Apr 25, 2024
1 parent 3c28a2c commit 0be9d9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions botcraft/include/botcraft/AI/TemplatedBehaviourClient.hpp
Expand Up @@ -157,8 +157,8 @@ namespace Botcraft
// Set the tree
SetBehaviourTree(Builder<TDerived>()
.sequence()
.succeeder().leaf(std::forward<Args>(args)...)
.leaf([](TDerived& c) { c.SetBehaviourTree(nullptr); return Status::Success; })
.succeeder().leaf(std::forward<Args>(args)...)
.leaf([](TDerived& c) { c.SetBehaviourTree(nullptr); return Status::Success; })
.end());

// Perform one step to get out of the Yield lock and swap tree
Expand Down

0 comments on commit 0be9d9a

Please sign in to comment.