mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
inspircd: normalize chmode +r name
This should be "registered", not "c_registered" in order to be consistent with other protocols.
This commit is contained in:
parent
0ccdf4cfce
commit
38e098aef4
@ -390,8 +390,12 @@ class InspIRCdProtocol(TS6BaseProtocol):
|
||||
# name it anything you like. The former is config default,
|
||||
# but I personally prefer the latter.
|
||||
name = 'owner'
|
||||
|
||||
if name == 'c_registered':
|
||||
# Be consistent with other protocols
|
||||
name = 'registered'
|
||||
|
||||
# We don't really care about mode prefixes; just the mode char
|
||||
# We don't care about mode prefixes; just the mode char.
|
||||
self.irc.cmodes[name] = char[-1]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user