Sponge Downloads

All builds

  1. 1.12.2-2655-7.1.0-BETA-3065

    1. Don't use CUSTOM type for Forge PopulateEvent and DecorateEvent
      In plain Forge, the CUSTOM event type is only used by mods. To maintaing
      compatibility with mods such as MoCreatures (which spawn mobs every time
      they receieve the event), we only fire this event when the type is
      non-CUSTOM: e.g when plain Forge would have been firing it.
      Aaron Hill - 8 years ago
  2. 1.12.2-2655-7.1.0-BETA-3064

    1. Rethrow caught throwable if unchecked before propagating
      Signed-off-by: kashike <[email protected]>
      mezz - 8 years ago
  3. 1.12.2-2655-7.1.0-BETA-3063

    1. Update for mulit-world difficulty.
      Signed-off-by: Chris Sanders <[email protected]>
      Chris Sanders - 8 years ago
    SpongeCommon
    1. Multi-World Difficulties.
      Chris Sanders - 8 years ago
    2. Properly re-add player scoreboard on respawn
      Aaron Hill - 8 years ago
  4. 1.12.2-2655-7.1.0-BETA-3062

    1. Revert previous bump
      Aaron Hill - 8 years ago
  5. 1.12.2-2655-7.1.0-BETA-3061

    1. Bump SpongeCommon for tab list changes
      Aaron Hill - 8 years ago
  6. 1.12.2-2655-7.1.0-BETA-3060

    1. Bump common for various improvements
      Signed-off-by: Chris Sanders <[email protected]>
      Chris Sanders - 8 years ago
    SpongeCommon
    1. Fix off-by-one error in MixinWorldServer.isAreaLoaded().
      JBYoshi - 8 years ago
    2. Merge pull request #1872 from SpongePowered/fix/containerplayerinventory
      Chris Sanders - 8 years ago
    3. Revert "Implement basic elytra data"
      Chris Sanders - 8 years ago
    4. Implement basic elytra data
      Parker Lougheed - 8 years ago
    5. refactor to hopefully improve performance
      D3_M0N - 8 years ago
    6. Implement basic elytra data
      Parker Lougheed - 8 years ago
    7. Merge pull request #1869 from SpongePowered/fix/inventoryeventclose
      Chris Sanders - 8 years ago
    8. add testplugin
      Anselm Brehme - 8 years ago
    9. cause frame for delayed open/close
      Anselm Brehme - 8 years ago
    10. delay opening/closing inventories during an InteractInventoryEvent
      Anselm Brehme - 8 years ago
    11. give ContainerPlayer a PlayerInventory
      Anselm Brehme - 8 years ago
  7. 1.12.2-2655-7.1.0-BETA-3059

    1. Ensure that the scheduler runs on the integrated server
      Annotating a method with SideOnly(Side.SERVER) causes it to only
      exist on the *dedicated* server.
      
      It's safe to remove it here, because the condition in the ClientTickEvent
      listener is mutually exclusive with this one.
      
      Before the integrated server starts, the ServerTickEvent listener will never run,
      since there won't be any ServerTickEvents fired. The ClientTickEvent
      listener will run, since Minecraft.getMinecraft().isIntegratedServerRunning()
      will be false.
      
      After the integrated server starts, the ServerTickEvent *will* run,
      since ServerTickEvents will be fired. The ClientTickEvent listener
      will *not* run, since Minecraft.getMinecraft().isIntegratedServerRunning()
      will return true.
      
      Fixes #2095
      Aaron Hill - 8 years ago
  8. 1.12.2-2655-7.1.0-BETA-3058

    1. Add support for detecting cancellations of Forge event only
      In certain cases, we want to distinguish between a Sponge plugins
      cancelling an event, and a Forge mod cancelling the linked Forge
      event that we fire.
      
      Fixes #2118
      Aaron Hill - 8 years ago
  9. 1.12.2-2655-7.1.0-BETA-3057

    1. Add AdvancementEvent to forgeToSpongeEventMapping
      Add some documentation explaining the purpose of this map
      Aaron Hill - 8 years ago
  10. 1.12.2-2655-7.1.0-BETA-3056

    1. Fix crash with re-sync of villagers.
      Signed-off-by: Chris Sanders <[email protected]>
      Chris Sanders - 8 years ago