summaryrefslogtreecommitdiff
path: root/include/channels.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-12 14:49:30 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-12 14:49:30 +0000
commitced58c3be3f1da8dcf70c3904e5fe4bdaabf0e3d (patch)
treedfe3ef7f3758ba7ae95fd1ae70c93d26238b7917 /include/channels.h
parent988568f3d1cc2247fa3adbadd8daa0ee175fcb1d (diff)
Renamed to chanrec::modes
Renamed IsCustomModeSet to IsModeSet GetModeParameter will now return the channel limit (as a string) for a request for mode 'l' and the channel key for a request for mode 'k'. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3692 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r--include/channels.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/channels.h b/include/channels.h
index 4c430af32..65f3948fe 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -111,7 +111,7 @@ class chanrec : public Extensible
/** Custom modes for the channel.
* Plugins may use this field in any way they see fit.
*/
- char custom_modes[64]; /* modes handled by modules */
+ char modes[64]; /* modes handled by modules */
/** User lists
* There are four user lists, one for
@@ -174,11 +174,11 @@ class chanrec : public Extensible
*/
void SetCustomModeParam(char mode,char* parameter,bool mode_on);
- /** Returns true if a custom mode is set on a channel
+ /** Returns true if a mode is set on a channel
* @param mode The mode character you wish to query
* @return True if the custom mode is set, false if otherwise
*/
- bool IsCustomModeSet(char mode);
+ bool IsModeSet(char mode);
/** Returns the parameter for a custom mode on a channel.
* @param mode The mode character you wish to query