Any modules which were using VF_STATIC to indicate they implement a mode should change this to VF_COMMON once they have the correct unload code

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5101 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-09-02 15:51:29 +00:00
parent 7f9c5d0bb0
commit 5c3df6d82d

View File

@ -94,7 +94,7 @@ class ModuleOperChans : public Module
virtual Version GetVersion()
{
return Version(1,0,0,0,VF_VENDOR);
return Version(1,0,0,0,VF_VENDOR|VF_COMMON);
}
};