1.5.9.15-11920211148

master
unknown 2021-01-19 11:48:13 -05:00
parent 20bd1be2da
commit 823347c165
6 changed files with 8 additions and 6 deletions

View File

@ -1,10 +1,11 @@
Epic Proportions Mod ChangeLog
indev-1.5.9.14
1.5.9.15
- Added more drops to Evil Birthday Present
- Fixed Enchantments for Super SuperGirlyGamer Armor and Tools
- Fixed Enchantments for Super FuriousDestroyer Armor and Tools
- Fixed Enchantments for EpicProportions Armor and Tools
- Fixed Issue #3 Mod Crashes on Server
1.5.9.14
- Added Achievement TNT

View File

@ -17,7 +17,7 @@ buildscript {
apply plugin: 'forge'
version = "indev-1.5.9.14"
version = "1.5.9.15"
group= "com.jtrent238.epicproportionsmod" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "epicproportionsmod"

View File

@ -2,6 +2,7 @@
package com.jtrent238.epicproportions;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.Achievement;

View File

@ -131,7 +131,7 @@ public class EpicProportionsMod implements ITweaker
@Instance(MODID)
public static EpicProportionsMod instance;
public static final String MODVERSION = "indev-1.5.9.14";
public static final String MODVERSION = "1.5.9.15";
public static final String APIVERSION = "1.0.0.0";
public static final String MODNAME = "PopularMMOS EpicProportions Mod";

View File

@ -114,13 +114,13 @@ public class Recipes {
Item lucky_pumpkinpie_item = Items.pumpkin_pie;
ItemStack lucky_pumpkinpie_stack = new ItemStack(lucky_pumpkinpie_item ,1);
lucky_pumpkinpie_stack.setStackDisplayName(EnumChatFormatting.GOLD + "" + EnumChatFormatting.BOLD + EnumChatFormatting.BOLD + StatCollector.translateToLocal("item.ItemLuckyPumpkinPie.name"));
lucky_pumpkinpie_stack.hasEffect();
//lucky_pumpkinpie_stack.hasEffect();
lucky_pumpkinpie_stack.setTagInfo("luckpoints", new NBTTagShort().copy());
GameRegistry.addShapedRecipe(lucky_pumpkinpie_stack, "PSB", "XBB","BBB", 'X', ItemLoader.ItemLuckyEgg, 'P', Blocks.pumpkin, 'S', Items.sugar);
Item lucky_cake_item = Items.cake;
ItemStack lucky_cake_stack = new ItemStack(lucky_cake_item ,1);
lucky_cake_stack.setStackDisplayName(EnumChatFormatting.GOLD + "" + EnumChatFormatting.BOLD + StatCollector.translateToLocal("item.ItemLuckyCake.name"));
lucky_cake_stack.hasEffect();
//lucky_cake_stack.hasEffect();
lucky_cake_stack.setTagInfo("luckpoints", new NBTTagShort().copy());
GameRegistry.addShapedRecipe(lucky_cake_stack, "MMM", "SXS","WWW", 'X', ItemLoader.ItemLuckyEgg, 'M', Items.milk_bucket, 'W', Items.wheat, 'S', Items.sugar);
GameRegistry.addShapedRecipe(new ItemStack(ItemLoader.ItemEpicProportionsWand), "BPB", "BJB","BSB", 'P', ItemLoader.itemPatStar, 'J', ItemLoader.itemJenStar, 'S', Items.stick);

View File

@ -1 +1 @@
1.5.9.14
1.5.9.15