LinkRelay: bug fix (plugin.py asked for per-channel values while config.py defines global values for colors).

master
Valentin Lorentz 2011-07-13 19:07:00 +02:00
parent 61afc93f2a
commit a4631f86e8
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ for name, color in {'info': '02',
'kick': '14',
'nick': '14',
'quit': '14'}.items():
conf.registerGlobalValue(LinkRelay.colors, name,
conf.registerChannelValue(LinkRelay.colors, name,
ColorNumber(color, _("""Color used for relaying %s.""") % color))