mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
We're a *real* package now.
This commit is contained in:
parent
96c5cd392e
commit
c950921cc3
12
docs/EXAMPLE
12
docs/EXAMPLE
@ -80,12 +80,12 @@ is available as examples/Random.py):
|
|||||||
Add the module docstring here. This will be used by the setup.py script.
|
Add the module docstring here. This will be used by the setup.py script.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import plugins
|
import supybot.plugins as plugins
|
||||||
|
|
||||||
import conf
|
import supybot.conf as conf
|
||||||
import utils
|
import supybot.utils as utils
|
||||||
import privmsgs
|
import supybot.privmsgs as privmsgs
|
||||||
import callbacks
|
import supybot.callbacks as callbacks
|
||||||
|
|
||||||
|
|
||||||
def configure(advanced):
|
def configure(advanced):
|
||||||
@ -409,7 +409,7 @@ __" where __ is the number the bot rolled. So here's the code:
|
|||||||
irc.error('Dice have integer numbers of sides. Use one.')
|
irc.error('Dice have integer numbers of sides. Use one.')
|
||||||
return
|
return
|
||||||
s = 'rolls a %s' % self.rng.randrange(1, n+1)
|
s = 'rolls a %s' % self.rng.randrange(1, n+1)
|
||||||
irc.reply(s, action=True)
|
irc.reply(s, action=True)
|
||||||
|
|
||||||
There's a lot of stuff you haven't seen before in there. The most
|
There's a lot of stuff you haven't seen before in there. The most
|
||||||
important, though, is the first thing you'll notice that's different:
|
important, though, is the first thing you'll notice that's different:
|
||||||
|
Loading…
Reference in New Issue
Block a user