summaryrefslogtreecommitdiff
path: root/src/modules/m_tline.cpp
diff options
context:
space:
mode:
authorpippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7>2008-06-11 11:35:23 +0000
committerpippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7>2008-06-11 11:35:23 +0000
commitd185decae97752368d5cf62311cbc0d1a52aa22c (patch)
tree754e7076778fabfbaacaef96da0f845110a8adef /src/modules/m_tline.cpp
parent62ac378bfb9591f5c5e10076c8be73adaabcfc64 (diff)
fixed some indentation and spacing in modules
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9888 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_tline.cpp')
-rw-r--r--src/modules/m_tline.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_tline.cpp b/src/modules/m_tline.cpp
index 79f9dff3c..31bd67e17 100644
--- a/src/modules/m_tline.cpp
+++ b/src/modules/m_tline.cpp
@@ -17,7 +17,7 @@
/* $ModDesc: Provides /tline command used to test who a mask matches */
/** Handle /TLINE
- */
+ */
class CommandTline : public Command
{
public:
@@ -57,7 +57,7 @@ class CommandTline : public Command
else
user->WriteServ( "NOTICE %s :*** TLINE: Counted %0.0f user(s). Matched '%s' against no user(s).", user->nick.c_str(), n_counted, parameters[0].c_str());
- return CMD_LOCALONLY;
+ return CMD_LOCALONLY;
}
};
@@ -68,7 +68,7 @@ class ModuleTLine : public Module
ModuleTLine(InspIRCd* Me)
: Module(Me)
{
-
+
newcommand = new CommandTline(ServerInstance);
ServerInstance->AddCommand(newcommand);
@@ -78,7 +78,7 @@ class ModuleTLine : public Module
virtual ~ModuleTLine()
{
}
-
+
virtual Version GetVersion()
{
return Version(1, 2, 0, 0, VF_VENDOR,API_VERSION);