summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2016-05-25 16:44:09 +0200
committerDico200 <dico.karssiens@gmail.com>2016-05-25 16:44:09 +0200
commit16e78a267766192486b88195bac1ee6c6ea45667 (patch)
tree38fb62c37225ac3d2c3dd463308a618ff3ec615b
parent2d6725df73df9d92a36aea2ab76f8573f32faf75 (diff)
Add missing ) to chatalias
-rw-r--r--chatalias.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chatalias.py b/chatalias.py
index 7163245..708179c 100644
--- a/chatalias.py
+++ b/chatalias.py
@@ -180,7 +180,7 @@ def add(sender, args):
return True
args = [args[0]] + [" ".join(args[1:])]
if not add_alias_data(uid(sender), str(args[0]), args[1]):
- msg(sender, colorify("&c") + "Could not add this alias because it would cause some sequences to be replaced multiple times"
+ msg(sender, colorify("&c") + "Could not add this alias because it would cause some sequences to be replaced multiple times", usecolor = False)
return True
msg(sender, colorify("&7Alias: ") + args[0] + colorify("&7 -> " + args[1] + colorify("&7 was succesfully created!")), usecolor=sender.hasPermission("essentials.chat.color"))
return True