mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[commands] WrappedCommand: Call wrapped command initSendable (#6471)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user