[commands] WrappedCommand: Call wrapped command initSendable (#6471)

This commit is contained in:
DeltaDizzy
2024-04-21 22:30:43 -05:00
committed by GitHub
parent 98d2f45fa9
commit 7bc0380694
3 changed files with 12 additions and 0 deletions

View File

@@ -43,3 +43,7 @@ Command::InterruptionBehavior WrapperCommand::GetInterruptionBehavior() const {
wpi::SmallSet<Subsystem*, 4> WrapperCommand::GetRequirements() const {
return m_command->GetRequirements();
}
void WrapperCommand::InitSendable(wpi::SendableBuilder& builder) {
m_command->InitSendable(builder);
}