]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
Move all the parameters around AGAIN. See docs shortly
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index f62b9e779adc969446135b0a3b9d7dc5cf3940b5..861bf7e14f2eccfe86367ced062af86d25d25a75 100644 (file)
@@ -26,7 +26,7 @@
  * Failure to document your protocol changes will result in a painfully
  * painful death by pain. You have been warned.
  */
-const long ProtocolVersion = 1200;
+const long ProtocolVersion = 1201;
 
 /** Forward declarations
  */
@@ -78,7 +78,7 @@ class ModuleSpanningTree : public Module
 
        /** Show MAP output to a user (recursive)
         */
-       void ShowMap(TreeServer* Current, User* user, int depth, char matrix[128][128], float &totusers, float &totservers);
+       void ShowMap(TreeServer* Current, User* user, int depth, char matrix[250][250], float &totusers, float &totservers);
 
        /** Handle remote MOTD
         */
@@ -160,7 +160,7 @@ class ModuleSpanningTree : public Module
        virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent);
        virtual void OnChangeHost(User* user, const std::string &newhost);
        virtual void OnChangeName(User* user, const std::string &gecos);
-       virtual void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent);
+       virtual void OnUserPart(User* user, Channel* channel, std::string &partmessage, bool &silent);
        virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message);
        virtual void OnUserPostNick(User* user, const std::string &oldnick);
        virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent);