Separate network mod config from setup. Allows for Forge Packet Handler nicety

This commit is contained in:
Christian 2013-05-20 21:38:36 -04:00
parent 8f779cf618
commit c8cc7b27d1

View file

@ -5,7 +5,7 @@
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
*
* Contributors:
* cpw - implementation
*/
@ -96,6 +96,10 @@ public class NetworkModHandler
}
}
configureNetworkMod(container);
}
protected void configureNetworkMod(ModContainer container)
{
if (this.checkHandler == null)
{
String versionBounds = mod.versionBounds();