diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e81be5..e2686e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Changelog +**1.1.2** +* Update Casting Table Texture +* Generate Spells in Pillager Outposts and Woodland Mansions + **1.1.1** * Add a unique texture for the Spell diff --git a/gradle.properties b/gradle.properties index 8976c15..f6b7f74 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G loader_version = 0.7.8+build.186 # Mod Properties - mod_version = 1.1.1 + mod_version = 1.1.2 maven_group = com.thebrokenrail archives_base_name = sorcerycraft diff --git a/src/main/java/com/thebrokenrail/sorcerycraft/SorceryCraft.java b/src/main/java/com/thebrokenrail/sorcerycraft/SorceryCraft.java index 9e0159f..214257d 100644 --- a/src/main/java/com/thebrokenrail/sorcerycraft/SorceryCraft.java +++ b/src/main/java/com/thebrokenrail/sorcerycraft/SorceryCraft.java @@ -66,7 +66,9 @@ public class SorceryCraft implements ModInitializer, ClientModInitializer { LootTables.SHIPWRECK_TREASURE_CHEST, LootTables.DESERT_PYRAMID_CHEST, LootTables.JUNGLE_TEMPLE_CHEST, - LootTables.STRONGHOLD_LIBRARY_CHEST + LootTables.STRONGHOLD_LIBRARY_CHEST, + LootTables.PILLAGER_OUTPOST_CHEST, + LootTables.WOODLAND_MANSION_CHEST }; public static final double SPELL_FAILURE_CHANCE = 0.3d; diff --git a/src/main/resources/assets/sorcerycraft/textures/block/casting_table.png b/src/main/resources/assets/sorcerycraft/textures/block/casting_table.png index a68913a..88a126f 100644 Binary files a/src/main/resources/assets/sorcerycraft/textures/block/casting_table.png and b/src/main/resources/assets/sorcerycraft/textures/block/casting_table.png differ