Added $randomint

This commit is contained in:
Daniel Berlin 2003-11-02 03:17:45 +00:00
parent 82d2d8162a
commit 51f80108c4
1 changed files with 2 additions and 0 deletions

View File

@ -311,6 +311,7 @@ class Toggleable(object):
randomnickre = re.compile ("\$randomnick", re.I)
randomdatere = re.compile ("\$randomdate", re.I)
randomintre = re.compile ("\$randomint", re.I)
whore = re.compile ("\$who", re.I)
botnickre = re.compile("\$botnick", re.I)
todayre = re.compile("\$today", re.I)
@ -328,6 +329,7 @@ def standardSubstitute(irc, msg, text):
text)
t = pow(2,30)*random.random()+time.time()/4.0
text = randomdatere.sub(time.ctime(t), text)
text = randomintre.sub(random.random(), text)
text = whore.sub(msg.nick, text)
text = botnickre.sub(irc.nick, text)
text = todayre.sub(time.ctime(), text)