aboutsummaryrefslogtreecommitdiffstats
path: root/jeeves
diff options
context:
space:
mode:
Diffstat (limited to 'jeeves')
-rw-r--r--jeeves/admin.py2
-rw-r--r--jeeves/art.py2
-rw-r--r--jeeves/config.py6
-rw-r--r--jeeves/dj.py2
-rw-r--r--jeeves/duck.py4
5 files changed, 8 insertions, 8 deletions
diff --git a/jeeves/admin.py b/jeeves/admin.py
index 8738025..d210701 100644
--- a/jeeves/admin.py
+++ b/jeeves/admin.py
@@ -98,7 +98,7 @@ def cmd_follow(bot, trigger):
bot.notice("follow off", trigger.nick)
else:
state = "on" if bot.memory.get("jv_follow_enabled") else "off"
- bot.notice(f"follow is {state} — usage: !follow <on|off>", trigger.nick)
+ bot.notice(f"follow is {state}. usage: !follow <on|off>", trigger.nick)
@plugin.command("unfollow")
diff --git a/jeeves/art.py b/jeeves/art.py
index 274bac5..dbbb444 100644
--- a/jeeves/art.py
+++ b/jeeves/art.py
@@ -151,7 +151,7 @@ def _img_to_irc(url, height):
@plugin.require_chanmsg
def cmd_draw(bot, trigger):
if not _PILLOW:
- bot.notice("!draw requires Pillow (pip install Pillow) — not installed", trigger.nick)
+ bot.notice("!draw requires Pillow (pip install Pillow), not installed", trigger.nick)
return
args = (trigger.group(2) or "").split(None, 1)
diff --git a/jeeves/config.py b/jeeves/config.py
index 58d6484..0f2ea9d 100644
--- a/jeeves/config.py
+++ b/jeeves/config.py
@@ -29,19 +29,19 @@ def cmd_set(bot, trigger):
if len(args) < 2:
keys = ", ".join(sorted(jv.CONFIG_KEYS))
- bot.notice(f"usage: !set <key> <value> — keys: {keys}", trigger.nick)
+ bot.notice(f"usage: !set <key> <value>. keys: {keys}", trigger.nick)
return
key, raw = args[0].lower(), args[1]
if key not in jv.CONFIG_KEYS:
- bot.notice(f"unknown key '{key}' — use !config to see valid keys", trigger.nick)
+ bot.notice(f"unknown key '{key}'. use !config to see valid keys", trigger.nick)
return
typ, _, global_only, _ = jv.CONFIG_KEYS[key]
if global_only and in_chan:
- bot.notice(f"{key} is a global setting — use in PM to change it", trigger.nick)
+ bot.notice(f"{key} is a global setting. use in PM to change it", trigger.nick)
return
if global_only and not jv.is_owner(bot, trigger):
diff --git a/jeeves/dj.py b/jeeves/dj.py
index c270c64..d3b9982 100644
--- a/jeeves/dj.py
+++ b/jeeves/dj.py
@@ -258,7 +258,7 @@ def cmd_loop(bot, trigger):
bot.say(f"loop {arg}", trigger.sender)
else:
state = "on" if bot.memory.get("dj_loop") else "off"
- bot.say(f"loop is {state} — use !loop <on|off> to change (op)", trigger.sender)
+ bot.say(f"loop is {state}. use !loop <on|off> to change (op)", trigger.sender)
@plugin.command("clear")
diff --git a/jeeves/duck.py b/jeeves/duck.py
index 03804d1..1809456 100644
--- a/jeeves/duck.py
+++ b/jeeves/duck.py
@@ -30,7 +30,7 @@ from sopel import plugin
SPAWN_MSG = "\x02** A duck appears! **\x02 Quick, type !bang to shoot it!"
FLEE_MSG = "\x02** The duck got away! **\x02 Too slow."
-EMPTY_MSG = "*click* — chamber is empty. Use !reload first."
+EMPTY_MSG = "*click* chamber is empty. Use !reload first."
MOCK_MSG = "BLAM! ...at what? There's no duck, {nick}. You waste your shot."
KILL_MSG = "\x02BLAM!\x02 {nick} shot the duck in \x02{elapsed:.2f}s\x02! (+1 pt)"
@@ -123,7 +123,7 @@ def _tick(bot):
st["enabled"] = False
st["next_spawn"] = float("inf")
bot.say(
- f"Hunt over — no players for {idle} round(s). "
+ f"Hunt over, no players for {idle} round(s). "
f"Type !hunt start to begin again.",
channel,
)