From 453efe053131ca255ed12273ca311433562d8108 Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Wed, 18 May 2016 20:18:38 +0200 Subject: [PATCH] Bump mod version --- build.properties | 4 +-- resources/changelog/1.9-0.10.0.txt | 36 +++++++++++++++++++ .../java/org/cyclops/evilcraft/Reference.java | 4 +-- 3 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 resources/changelog/1.9-0.10.0.txt diff --git a/build.properties b/build.properties index 5affe93024..88e61ad7d4 100644 --- a/build.properties +++ b/build.properties @@ -1,8 +1,8 @@ -mod_version=0.9.10 +mod_version=0.10.0 minecraft_version=1.9 forge_version=12.16.1.1907 mcp_mappings_version=snapshot_20160516 -cyclopscore_version=0.5.9-326 +cyclopscore_version=0.6.0-327 release_type=release waila_version=1.7.0-B2_1.9 diff --git a/resources/changelog/1.9-0.10.0.txt b/resources/changelog/1.9-0.10.0.txt new file mode 100644 index 0000000000..474648688a --- /dev/null +++ b/resources/changelog/1.9-0.10.0.txt @@ -0,0 +1,36 @@ +As always, don't forget to backup your world before updating! +Requires CyclopsCore version 0.6.0. + +Additions: +* Add completely rewritten, fully customizable brooms. All information can be found in the Origins of Darkness +* Add Spikey Claws +* Make Vengeance Spirits killable using Vengeance Focus, their drops can be used to craft Garmonbozia +* Add blood overlay bar to gui, can be disabled and customized in the config +* Add display stands, they can be used to showcase any item, with six possible rotation. They can be crafted with all possible wood types + +Changes: +* Fully restore werewolf villager +* Make Blood fluid flowing more smoothly +* Move blood extraction section to start of second age in infobook, Closes #373 +* Change Envir Acc beam color based on the biome +* Restore Envir Acc boss bar rendering +* Allow Purifier to split up enchanted books +* Increase Spirit Furnace consumption for boss mobs, Closes #346 +* Improve Blood Pearl of Teleportation throwing velocity +* Restore loot chest item spawning +* Add JEI crafting category items +* Remove Broom from loot chests + +Fixes: +* Fix Vengeance Spirits not attacking players, Closes #393 +* Fix flying-is-not-enabled-kick when flying on a broom +* Make BOEC rendering blockstate-safe when the world is still loading +* Fix Vengeance Spirits making sound when they should not be visible +* Fix mace particles in SMP +* Fix Vengeance Spirit loot table crash +* Remove reinforcedUndeadPlank recipe warning +* Fix Blood Extractor not interacting with tank, Closes #372 +* Fix Vengeance Spirits colliding with entities, Closes #376 +* Reduce Dark Temple spawn rate, Closes #352 +* Fix Sanguinary Envir Acc recipes not showing in JEI +* Fix crappy Dark Temple loot chests diff --git a/src/main/java/org/cyclops/evilcraft/Reference.java b/src/main/java/org/cyclops/evilcraft/Reference.java index 9d8e71d33c..16ff84a19a 100644 --- a/src/main/java/org/cyclops/evilcraft/Reference.java +++ b/src/main/java/org/cyclops/evilcraft/Reference.java @@ -72,10 +72,10 @@ public class Reference { // MOD ID's public static final String MOD_FORGE = "Forge"; public static final String MOD_FORGE_VERSION = "@FORGE_VERSION@"; - public static final String MOD_FORGE_VERSION_MIN = "12.16.1.1900"; + public static final String MOD_FORGE_VERSION_MIN = "12.16.1.1907"; public static final String MOD_CYCLOPSCORE = "cyclopscore"; public static final String MOD_CYCLOPSCORE_VERSION = "@CYCLOPSCORE_VERSION@"; - public static final String MOD_CYCLOPSCORE_VERSION_MIN = "0.5.9"; + public static final String MOD_CYCLOPSCORE_VERSION_MIN = "0.6.0"; public static final String MOD_THERMALEXPANSION = "ThermalExpansion"; public static final String MOD_WAILA = "Waila"; public static final String MOD_FMP = "ForgeMultipart";