FONT_RESET should be FONT_COLOR, also more string wizardry in ducks.py!

This commit is contained in:
dngfx 2018-09-09 03:39:29 +01:00 committed by dongfix
parent fb3fa55477
commit c8bbdddc59
2 changed files with 10 additions and 6 deletions

View file

@ -38,11 +38,11 @@ class Out(object):
class StdOut(Out): class StdOut(Out):
def prefix(self): def prefix(self):
return "%s%s%s" % (Utils.color(Utils.COLOR_GREEN), return "%s%s%s" % (Utils.color(Utils.COLOR_GREEN),
self.module_name, Utils.FONT_RESET) self.module_name, Utils.FONT_COLOR)
class StdErr(Out): class StdErr(Out):
def prefix(self): def prefix(self):
return "%s!%s%s" % (Utils.color(Utils.COLOR_RED), return "%s!%s%s" % (Utils.color(Utils.COLOR_RED),
self.module_name, Utils.FONT_RESET) self.module_name, Utils.FONT_COLOR)
class Module(object): class Module(object):
def __init__(self, bot, events, exports): def __init__(self, bot, events, exports):

View file

@ -315,8 +315,10 @@ class Module(object):
length = len(enemy_nicks) if len(enemy_nicks) < 8 else 8 length = len(enemy_nicks) if len(enemy_nicks) < 8 else 8
for i in range(0, length): for i in range(0, length):
build.append("%s (%s)" % (Utils.bold(enemy_nicks[i]), nick = Utils.prevent_highlight(enemy_nicks[i])
enemy_ducks[i])) build.append("%s (%s)" \
% (Utils.bold(nick),
enemy_ducks[i]))
sentence += ", ".join(build) sentence += ", ".join(build)
@ -347,8 +349,10 @@ class Module(object):
build = [] build = []
for i in range(0, length): for i in range(0, length):
build.append("%s (%s)" % ( Utils.bold(friend_nicks[i]), nick = Utils.prevent_highlight(friend_nicks[i])
friend_ducks[i]) build.append("%s (%s)" \
% ( Utils.bold(nick),
friend_ducks[i])
) )
sentence += ", ".join(build) sentence += ", ".join(build)