From 74320e39a45a9a4762a88cb51d01789da0b5b3cf Mon Sep 17 00:00:00 2001 From: s55ma Date: Fri, 2 Jun 2017 13:32:25 +0200 Subject: [PATCH 1/4] update Added .xrp with response: We have the best C++ dev team on the world --- trifling.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/trifling.py b/trifling.py index 648bc66..f6acf18 100644 --- a/trifling.py +++ b/trifling.py @@ -438,6 +438,10 @@ def wave(bot, trigger): @sopel.module.commands('pamp') def pamp(bot, trigger): bot.say(" pamp o clock yet?") + +@sopel.module.commands('xrp') +def xrp(bot, trigger): + bot.say("We have the best C++ dev team on the world!") @sopel.module.commands('asp') def asp(bot, trigger): From cd2ae0bdbd6fd3dc37d30fc1f2fdc5166be43eed Mon Sep 17 00:00:00 2001 From: s55ma Date: Fri, 2 Jun 2017 13:35:44 +0200 Subject: [PATCH 2/4] update typo fixed typo --- trifling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trifling.py b/trifling.py index f6acf18..ff98e41 100644 --- a/trifling.py +++ b/trifling.py @@ -441,7 +441,7 @@ def pamp(bot, trigger): @sopel.module.commands('xrp') def xrp(bot, trigger): - bot.say("We have the best C++ dev team on the world!") + bot.say("We have the best C++ dev team in the world!") @sopel.module.commands('asp') def asp(bot, trigger): From 7383fe4e22456d068b354edf205859aadfa52b13 Mon Sep 17 00:00:00 2001 From: s55ma Date: Fri, 2 Jun 2017 18:41:51 +0200 Subject: [PATCH 3/4] update command added .fake response = and gay --- trifling.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/trifling.py b/trifling.py index ff98e41..5424d64 100644 --- a/trifling.py +++ b/trifling.py @@ -4,7 +4,7 @@ import random import re import requests import praw -from client import * +from client import from threading import Timer @sopel.module.commands('4matter') @@ -442,7 +442,11 @@ def pamp(bot, trigger): @sopel.module.commands('xrp') def xrp(bot, trigger): bot.say("We have the best C++ dev team in the world!") - + +@sopel.module.commands('fake') +def fake(bot, trigger): + bot.say("and gay") + @sopel.module.commands('asp') def asp(bot, trigger): polourl = "https://poloniex.com/public?command=returnTicker" From d2d7c822295046c43d729ef544e8dcbfd34aba28 Mon Sep 17 00:00:00 2001 From: s55ma Date: Fri, 2 Jun 2017 18:42:30 +0200 Subject: [PATCH 4/4] fixed typo typo --- trifling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trifling.py b/trifling.py index 5424d64..9150460 100644 --- a/trifling.py +++ b/trifling.py @@ -4,7 +4,7 @@ import random import re import requests import praw -from client import +from client import * from threading import Timer @sopel.module.commands('4matter')