Jump to content

xWoom

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by xWoom

  1. use the events WorldEvent.Load to load and WorldEvent.Save to save. this is an example: @SubscribeEvent public void onWorldLoad(WorldEvent.Load event) { ModWorldSavedData.get(event.getWorld()); } @SubscribeEvent public void onWorldSave(WorldEvent.Save event) { ModWorldSavedData.get(event.getWorld()).markDirty(); }
  2. Thank you so much
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.