Guest User

Untitled

a guest
Jul 4th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @Init
  2. public void initialize(FMLInitializationEvent event) {
  3. NetworkRegistry.instance().registerConnectionHandler(new ConnectionHandler());
  4. MinecraftForge.EVENT_BUS.register(this);
  5. CoolModMan.instance.onModInitialize();
  6. try {
  7. storage.readIncomingData(new FileReader(getConfigFile()), false);
  8. } catch (FileNotFoundException e) {
  9. // TODO Auto-generated catch block
  10. e.printStackTrace();
  11. } catch (IOException e) {
  12. // TODO Auto-generated catch block
  13. e.printStackTrace();
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment