Browse Source

Added "plugins" and "plugin" triggers to ListPluginIRCCommand.

pull/3/head
JustinAJ 10 years ago
parent
commit
243effd323
  1. 2
      PluginManager/PluginManager.cpp

2
PluginManager/PluginManager.cpp

@ -141,6 +141,8 @@ IRC_COMMAND_INIT(FreePluginIRCCommand)
void ListPluginIRCCommand::create() void ListPluginIRCCommand::create()
{ {
this->addTrigger(STRING_LITERAL_AS_REFERENCE("plugins"));
this->addTrigger(STRING_LITERAL_AS_REFERENCE("plugin"));
this->addTrigger(STRING_LITERAL_AS_REFERENCE("listplugin")); this->addTrigger(STRING_LITERAL_AS_REFERENCE("listplugin"));
this->addTrigger(STRING_LITERAL_AS_REFERENCE("listplugins")); this->addTrigger(STRING_LITERAL_AS_REFERENCE("listplugins"));
this->addTrigger(STRING_LITERAL_AS_REFERENCE("pluginlist")); this->addTrigger(STRING_LITERAL_AS_REFERENCE("pluginlist"));

Loading…
Cancel
Save