aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_override.cpp
Commit message (Expand)AuthorAgeFilesLines
* Rename Simple{Channel,User}ModeHandler to match other mode handlers.Gravatar Sadie Powell2021-06-011-1/+1
* Fire OnUserPreJoin regardless of whether the join is an override.Gravatar Sadie Powell2021-05-231-2/+2
* Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-5/+3
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-0/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-12-041-1/+1
|\|
| * Improve the message sent when overriding channel modes.•••Ref: #1816.Gravatar satmd2020-11-221-1/+1
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-07-291-1/+1
|\|
| * Replace all erroneous space indentation with tab indentation.Gravatar Sadie Powell2020-07-291-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-3/+3
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-2/+2
| * Add Channel::WriteRemoteNotice and revert WriteNotice changes.•••This is a partial reversion of 687778b72e. See also: #1749. Gravatar Sadie Powell2020-01-291-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-6/+11
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-6/+11
* | Move ISupport logic out of the core and into core_info.Gravatar Sadie Powell2020-01-051-3/+8
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-5/+5
* | Remove all 2.0 config compatibility code.Gravatar Sadie Powell2019-01-251-18/+4
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-8/+8
|/
* Add optional oper override umode +O.Gravatar B00mX0r2017-12-111-2/+21
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-1/+1
* Add support for setting the unset rank in ModeHandler.Gravatar Peter Powell2017-11-061-1/+1
* Merge v2.0.23 and v2.0.24 into master.Gravatar Peter Powell2017-07-091-1/+2
|\
| * m_override: fix parentheses compiler warningGravatar Adam2017-05-171-1/+1
| * fix channel rank issueGravatar Sheogorath2016-12-101-1/+2
* | Send NOTICEs to local channel members with Channel::WriteNotice()Gravatar Attila Molnar2016-03-051-1/+1
* | Rewrite invite system•••- Moved out of core, now lives entirely in core_channel - Accessible using the provided API after including the appropriate header - Invites are stored in an extension attached to LocalUser/Channel objects, they no longer need special handling when destroying these objects or when lowering TS - Expiration of timed invites are implemented using Timers - When creating a new invite let a non-timed invite override a timed one Gravatar Attila Molnar2015-11-021-1/+4
* | Pass Modes::ChangeList references to the OnPreMode hook, make it modifiable•••This gets rid of the duplicated mode parsing logic in m_namedmodes Gravatar Attila Molnar2014-09-041-11/+27
* | Remove redundant IS_LOCAL() checks discovered by static assertsGravatar Attila Molnar2014-04-261-1/+1
* | m_override Deduplicate codeGravatar Attila Molnar2014-04-031-51/+19
* | Merge insp20Gravatar Attila Molnar2014-01-211-1/+18
|\|
| * Fix m_override refusing to override modes if the user holds halfop or higher ...Gravatar Daniel Vassdal2013-12-141-1/+18
* | Stop null checking pointers that are always validGravatar Attila Molnar2014-01-091-1/+1
* | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init() Gravatar attilamolnar2013-08-301-4/+2
* | Automatically attach modules to eventsGravatar attilamolnar2013-08-041-2/+0
* | Replace hardcoded mode letters, part 2•••This changes all remaining Channel::IsModeSet() and Channel::GetModeParameter() calls to use ModeReferences for modes that were created by other modules or the core Gravatar attilamolnar2013-07-191-4/+15
* | Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
* | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. Gravatar Peter Powell2013-05-151-8/+8
* | Add method for writing server notices.•••This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. Gravatar Peter Powell2013-05-141-4/+4
* | OnUserPreJoin is a local-only hook, change User* parameter to LocalUser*Gravatar attilamolnar2013-04-131-2/+2
* | Remove the deprecated invite APIGravatar attilamolnar2013-04-131-2/+1
* | Convert ISUPPORT to use a map instead of a string.Gravatar Peter Powell2013-04-111-2/+2
* | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper()Gravatar attilamolnar2013-04-101-4/+4
* | Change channel name parameter of Module::OnUserPreJoin() and Channel::JoinUse...Gravatar attilamolnar2013-04-011-9/+9
|/
* Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove Gravatar attilamolnar2012-12-021-1/+1