| 134 | } |
| 135 | |
| 136 | CommandDefinition* Module::getCommandDefinitionForItemID(int itemID) |
| 137 | { |
| 138 | if (itemID == 400) return scriptCommanDef.get(); |
| 139 | if (itemID >= 500) return templateManager->defManager->definitions[itemID - 500]; |
| 140 | else return defManager->definitions[itemID]; |
| 141 | } |
| 142 | |
| 143 | void Module::onControllableFeedbackUpdateInternal(ControllableContainer* cc, Controllable* c) |
| 144 | { |
no test coverage detected