diff --git a/plugins/Relay.py b/plugins/Relay.py index a1f694fbe..77b470a5f 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -87,6 +87,8 @@ def configure(onStart, afterConnect, advanced): while yn('Would like to relay between any more channels?') == 'y': channel = anything('What channel?') afterConnect.append('relayjoin %s' % channel) + if yn('Would you like to use color to distinguish between nicks?') == 'y': + afterConnect.append('relaycolor 2') class Relay(callbacks.Privmsg):