Markov: add support for temporarily disabling chatter by supplying a negative chance
This commit is contained in:
parent
78f7614987
commit
e3ef3f48dc
@ -349,6 +349,7 @@ class Markov(Module):
|
|||||||
|
|
||||||
targets = self._get_chatter_targets()
|
targets = self._get_chatter_targets()
|
||||||
for t in targets:
|
for t in targets:
|
||||||
|
if t['chance'] > 0:
|
||||||
a = random.randint(1, t['chance'])
|
a = random.randint(1, t['chance'])
|
||||||
if a == 1:
|
if a == 1:
|
||||||
self.sendmsg(self.connection, t['target'], self._generate_line(t['target']))
|
self.sendmsg(self.connection, t['target'], self._generate_line(t['target']))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user