mirror of
https://github.com/Limnoria/Limnoria-doc.git
synced 2025-04-05 06:49:48 +00:00
plugin_tutorial: fill in note about irc in plugin constructor
This commit is contained in:
@ -165,11 +165,14 @@ For this sample plugin, we define a custom constructor (``__init__``) that
|
|||||||
instantiates a random number generator instance and pre-seeds it. This isn't
|
instantiates a random number generator instance and pre-seeds it. This isn't
|
||||||
technically necessary for Python's ``random`` module, but it helps outline
|
technically necessary for Python's ``random`` module, but it helps outline
|
||||||
how to write a similar constructor. Notice in particular how you must pass in
|
how to write a similar constructor. Notice in particular how you must pass in
|
||||||
the ``irc`` argument in addition to ``self``.
|
an ``irc`` argument in addition to ``self``.
|
||||||
|
|
||||||
.. note::
|
.. warning::
|
||||||
TODO(jlu): semantically, what does ``irc`` refer to? Most plugins don't
|
Because Limnoria is a multi-network bot, you should generally ignore
|
||||||
actually reference it on load time.
|
the ``irc`` instance passed to the plugin constructor.
|
||||||
|
On a manual ``load`` call to a live bot, this will be set to the network
|
||||||
|
the command was run on, but on bot startup, ``irc`` will be (arbitrarily)
|
||||||
|
set to the first network that the bot decides to connect to.
|
||||||
|
|
||||||
Basic command handler
|
Basic command handler
|
||||||
---------------------
|
---------------------
|
||||||
|
Reference in New Issue
Block a user