aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_remove.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-5/+5
|
* Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-4/+7
|
* Fix some places where U-line -> service was missed.Gravatar Sadie Powell2021-08-291-1/+1
|
* Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
| |
* | Kill some useless comments.Gravatar Sadie Powell2021-05-131-4/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-2/+2
| |
* | Add ChannelManager::IsPrefix.Gravatar Sadie Powell2021-05-081-1/+1
| |
* | Move channel logic from InspIRCd to the new ChannelManager class.Gravatar Sadie Powell2021-05-081-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
| |
* | Replace all internal references to uline with services.Gravatar Sadie Powell2021-01-301-2/+2
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
| |
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-8/+8
| |
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-2/+2
| |
* | 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/+3
| |
* | Move FindNickOnly to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Move FindNick to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-1/+1
| |
| * Add Channel::WriteRemoteNotice and revert WriteNotice changes.Gravatar Sadie Powell2020-01-291-1/+1
| | | | | | | | | | | | This is a partial reversion of 687778b72e. See also: #1749.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-4/+10
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-4/+10
| |
* | Move ISupport logic out of the core and into core_info.Gravatar Sadie Powell2020-01-051-3/+7
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-5/+5
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-2/+2
|\|
| * Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-181-2/+2
| |
* | Replace translation macros with a C++11 initialiser list.Gravatar Sadie Powell2019-02-151-2/+2
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-5/+5
|/
* Fix a bunch more conflicting/unnamed numerics.Gravatar Peter Powell2018-08-141-1/+1
|
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-7/+7
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* Add ConfigTag::getUInt for reading unsigned config values.Gravatar Peter Powell2018-04-161-1/+1
|
* Fixed misc. instances of ERR_NOSUCHNICK instead of channel numericsGravatar B00mX0r2017-12-221-2/+7
| | | | Per #1122
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-2/+2
| | | | GCCs warnings for this are much better than Clangs.
* Bump version to 3.0 in comments and messagesGravatar Attila Molnar2016-09-021-1/+1
|
* Send NOTICEs to local channel members with Channel::WriteNotice()Gravatar Attila Molnar2016-03-051-1/+1
|
* Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Gravatar Attila Molnar2016-02-251-3/+3
| | | | parameters
* Convert remaining NOTICEs implemented using WriteServ() to WriteNotice()Gravatar Attila Molnar2015-12-291-2/+2
|
* m_remove Make the protected rank configurable instead of hardcoding it to 50000Gravatar Attila Molnar2014-06-091-6/+9
| | | | Change type of ulevel and tlevel to unsigned int
* m_remove Recognize /REMOVE <chan> <nick>Gravatar Attila Molnar2014-06-091-2/+5
| | | | | | The old syntax is now deprecated Fixes issue #860 reported by @Shawn-Smith
* m_remove Manually forward all REMOVE messages, turn FPART into REMOVEGravatar Attila Molnar2014-06-091-18/+12
|
* Merge insp20Gravatar Attila Molnar2014-01-211-1/+4
|\
| * Use FindNickOnly() in a few more places if a local user is performing an ↵Gravatar Attila Molnar2014-01-191-1/+4
| | | | | | | | action to prevent UID walking
* | Introduce Server classGravatar Attila Molnar2014-01-051-1/+1
| | | | | | | | | | - Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine()