| 107 | } |
| 108 | |
| 109 | bool HelpCommand::ApplyInner(const CommandContext & context){ |
| 110 | PluginID ID = PluginManager::Get().GetByCommandIdentifier(mCommandName); |
| 111 | if( ID.empty() ) |
| 112 | context.Status( "Command not found" ); |
| 113 | else |
| 114 | EffectAndCommandPluginManager::Get().GetCommandDefinition(ID, context, 1); |
| 115 | return true; |
| 116 | } |
| 117 | |
| 118 | template<bool Const> |
| 119 | bool CommentCommand::VisitSettings( SettingsVisitorBase<Const> & S ){ |
nothing calls this directly
no test coverage detected