diff --git a/plugins/Status/plugin.py b/plugins/Status/plugin.py index 793775055..b3966f35b 100644 --- a/plugins/Status/plugin.py +++ b/plugins/Status/plugin.py @@ -223,6 +223,15 @@ class Status(callbacks.Plugin): irc.reply(irc.server) server = wrap(server) + @internationalizeDocstring + def network(self, irc, msg, args): + """takes no arguments + + Returns the network the bot is on. + """ + irc.reply(irc.network) + network = wrap(network) + Class = Status